_allTemplates = context.Templates
.Include(t => t.Fields.OrderBy(f => f.BaseOrder));
我收到此错误
Include路径表达式必须引用导航属性 在类型上定义。使用虚线路径进行参考导航 属性和集合导航的Select运算符 属性。
有人可以帮忙吗?
答案 0 :(得分:1)
Include方法仅指定要包含在查询结果Include Method
中的相关对象如果您需要订购导航属性,则必须以其他方式完成。例如How to order child collections of entities in EF或EF 4.1 code-first: How to order navigation properties when using Include and/or Select methods?