LINQ包含的目的

时间:2012-05-03 22:40:57

标签: linq

在Linq中,我看到使用了Include关键字。 包含的目的是什么?

    x=> x.Lists.Include(l => l.Title) 
 .Where(l => l.Title != String.Empty) 

1 个答案:

答案 0 :(得分:2)

Include方法用于强制EF急切地从子关系加载行。

您的示例代码已损坏; Include()只能在导航属性上调用。