I have the following two database tables. A group contains multiple members.
Groups: Id (int) | Name (int)
Members: Id (int) | GroupId (int) | IsExpert (bit)
I need to write a linq to sql query that returns the Groups that has no experts. Need some help
Your answer should be those groups where the groups’ collection of members doesn’t contain any experts (ie
!Any)