LinQ to Entities,Max Date字段,按什么分组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LinQ to Entities,Max Date字段,按什么分组相关的知识,希望对你有一定的参考价值。
from p in PersonOrders // put your where clause here group p by p.PersonID into grp //could be grouped by anything, Grouping on Guid ID's is not a good idea let MaxOrderDatePerPerson = grp.Max ( g=>g.OrderDate ) from p in grp where p.OrderDate == MaxOrderDatePerPerson select p
以上是关于LinQ to Entities,Max Date字段,按什么分组的主要内容,如果未能解决你的问题,请参考以下文章
LINQ to Entities 不支持指定的类型成员“日期”。 DbFunctions.TruncateTime()
为啥 LINQ-to-Entities 将此查询放在子选择中?
Linq-to-Entities:带有 WHERE 子句和投影的 LEFT OUTER JOIN
LINQ to Entities does not recognize the method , and this method cannot be translated into a store e