我知道我可以用这种方式包含一些外键对象:
xx.Include(p=>p.xxId)
但是我发现另一个重载方法有一个参数路径。 我想知道我究竟要传递参数的值。 谢谢你的帮助。
答案 0 :(得分:1)
导航路径。
Items.Include(item => item.Category)
Items.Include(item => item.Category.SubCategories)
相当于
Items.Include("Category");
Items.Include("Category.SubCategories");