public class Parent
{
public IList<Child> Collection { get; set; }
}
public class Child
{
public GrandChild GrandChild { get; set; }
}
public class GrandChild
{
public string Value { get; set; }
}
Context.Parents.Select(p => new { Parent = p, Collection = p.Collection } );
该查询为我提供了每个父母的集合。但是如何为每个集合中的每个孩子加载 GrandChild?