在实体框架中IQueryable <t>包含(字符串路径)方法的确切值是什么?</t>

时间:2011-08-19 07:28:46

标签: entity-framework .net-4.0

我知道我可以用这种方式包含一些外键对象:

xx.Include(p=>p.xxId)

但是我发现另一个重载方法有一个参数路径。 我想知道我究竟要传递参数的值。 谢谢你的帮助。

1 个答案:

答案 0 :(得分:1)

导航路径。

Items.Include(item => item.Category)
Items.Include(item => item.Category.SubCategories)

相当于

Items.Include("Category");
Items.Include("Category.SubCategories");