Linq Query To Fetch The Data Of Parent Table By Using List Of Child ForiegnKeyId
public class Parent
{
List<Child> childs{get;set;}
}
what i need is that
List<Parent> p=new List<Parent>();
p=p.Where(x=>x.childs.boyId==20); //this is not correct query.
pls help me..