我正在尝试在日期时间字段的日期部分执行Linq组。
此linq语句有效但按日期和时间分组。
var myQuery = from p in dbContext.Trends
group p by p.UpdateDateTime into g
select new { k = g.Key, ud = g.Max(p => p.Amount) };
当我运行此语句仅按日期分组时出现以下错误
var myQuery = from p in dbContext.Trends
group p by p.UpdateDateTime.Date into g //Added .Date on this line
select new { k = g.Key, ud = g.Max(p => p.Amount) };
LINQ to Entities不支持指定的类型成员“Date”。 仅支持初始化程序,实体成员和实体导航属性。
如何按日期而不是日期和时间进行分组?
答案 0 :(得分:32)
使用EntityFunctions.TruncateTime方法:
var myQuery = from p in dbContext.Trends
group p by EntityFunctions.TruncateTime(p.UpdateDateTime) into g
select new { k = g.Key, ud = g.Max(p => p.Amount) };
答案 1 :(得分:5)
可能的解决方案here遵循以下模式:
var q = from i in ABD.Listitem
let dt = p.EffectiveDate
group i by new { y = dt.Year, m = dt.Month, d = dt.Day} into g
select g;
因此,对于您的查询[未经测试]:
var myQuery = from p in dbContext.Trends
let updateDate = p.UpdateDateTime
group p by new { y = updateDate.Year, m = updateDate.Month, d = updateDate.Day} into g
select new { k = g.Key, ud = g.Max(p => p.Amount) };
答案 2 :(得分:0)
您无法在Linq-to-Entities查询中使用DateTime.Date
。您可以通过字段显式分组,也可以在数据库中创建Date
字段。 (我遇到了同样的问题 - 我在数据库中使用了Date
字段,从未回头看过。)