标签: linq
在Linq中,我看到使用了Include关键字。 包含的目的是什么?
x=> x.Lists.Include(l => l.Title) .Where(l => l.Title != String.Empty)
答案 0 :(得分:2)
Include方法用于强制EF急切地从子关系加载行。
Include
您的示例代码已损坏; Include()只能在导航属性上调用。
Include()