给定类似的东西:
public class Parent
{
public int Id { get; set; }
public List<Child> Children { get; set; }
}
// There is no reference to the parent in the object model
public class Child
{
public int Id { get; set; }
public string MyProperty { get; set; }
}
对于给定的父 ID,是否可以仅加载与特定条件匹配的子实体,而无需加载父实体?
我已经看到使用投影来加载匹配条件的父级和零个或多个子级的解决方案。