0
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?

4

1 回答 1

0

只需将另一个 .Select 附加到父 .Select 的末尾

于 2013-09-04T18:10:24.887 回答