LinQ to Entities,Max Date字段,按什么分组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LinQ to Entities,Max Date字段,按什么分组相关的知识,希望对你有一定的参考价值。

  1. from p in PersonOrders
  2. // put your where clause here
  3. group p by p.PersonID into grp //could be grouped by anything, Grouping on Guid ID's is not a good idea
  4. let MaxOrderDatePerPerson = grp.Max ( g=>g.OrderDate )
  5.  
  6. from p in grp
  7. where p.OrderDate == MaxOrderDatePerPerson
  8. 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

如果存在-UPDATE-else-INSERT 与 Linq-to-Entities?

LINQ to Entities 选择新建