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