all
Below is my query code:
var users = db.users.where(u=> u.id=5 && db.usergroups.any(d=>d.user_id=u.id))
Build the expression tree for the condition u.id=5 is easy, but who can tell me how to build the condition db.usergroups.any(d=>d.user_id=u.id)
thanks
Expressionclass?