score:6

Accepted answer

i think what you're really looking for is something like

var queryresult = await conn.table<peoplerequested>()
                            .where(x => x.somefield == somevalue)
                            .countasync();  

your way is not going to work, since the last . operator is expecting a method call, not an opening parenthesis or lambda expression.


Related Query

More Query from same tag