Lets say I have a many-to-many relationship:
- Group table
- User table
- group_user table which is a many to many table
Given the group name I would like to find all the users that belong to this group. How can I do this with subsonic 3.0?
IQueryable<group_user> groupUser= group_user.All();
Is it possible from groupUser to get all users who belong to a specific group say group 1? Is there any other way