使用实体框架,您可以执行类似的操作,以使用查询加载多个引用的对象.
var Customer = context.Customers.Include(x=>x.Orders.Select(y=>y.Items));
看起来我不能用LoadProperty方法做同样的事情.当我已经有一个对象并且我需要加载一些参考数据时,我使用LoadProperty.
context.LoadProperty(Customer, x=>x.Orders);
这样可行.但这会引发错误..
context.LoadProperty(Customer, x=>x.Orders.Select(y=>y.Items));
这也是……
context.LoadProperty(Customer.Orders, x=>x.Items);
这是两种情况的例外……
The selector expression for
LoadProperty must be a MemberAccess
for the property.
最佳答案 No LoadProperty不允许这样做.您可以尝试使用
another question中描述的方法.