带有实体的订单子列表包括获取错误

时间:2014-05-15 08:08:55

标签: c# linq entity-framework

_allTemplates = context.Templates
                       .Include(t => t.Fields.OrderBy(f => f.BaseOrder));

我收到此错误

  

Include路径表达式必须引用导航属性   在类型上定义。使用虚线路径进行参考导航   属性和集合导航的Select运算符   属性。

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

Include方法仅指定要包含在查询结果Include Method

中的相关对象

如果您需要订购导航属性,则必须以其他方式完成。例如How to order child collections of entities in EFEF 4.1 code-first: How to order navigation properties when using Include and/or Select methods?