I just need Parent objects. In SQL, this is simple:
select distinct * from parent join child on child.ParentID = Parent.ID where child.playssoccer = true; In Entity Framework 6, this seems like splitting the atom to me.
I need new p => parent where parents.children.playssoccer = true .
How do I get soccer parents out of a similar EF6 DBContext?