How to group by DateTime.Date in EntityFramework(如何在 EntityFramework 中按 DateTime.Date 分组)
问题描述
我有一个设备型号:
public class DeviceModel
{
public DateTime Added { get;set; }
}
我想选择设备计数,按 Added
日期(不是日期和时间,而只有日期)分组.我当前的实现无效,因为 linq 无法将 DateTime.Date
转换为 sql:
And i want to select devices count, grouped by Added
date (not Date and Time, but only date). My current implementation is not valid, because linq can't translate DateTime.Date
to sql:
var result = (
from device in DevicesRepository.GetAll()
group device by new { Date = device.Added.Date } into g
select new
{
Date = g.Key.Date,
Count = g.Count()
}
).OrderBy(nda => nda.Date);
如何更改此查询以使其正常工作?
How to change this query to make it work?
推荐答案
嗯,根据this MSDN 文档,Date
属性受 LINQ to SQL 支持,我假设 Entity Framework 也支持它.
Well, according to this MSDN document, Date
property is supported by LINQ to SQL and I'd assume that Entity Framework supports it as well.
不管怎样,试试这个查询(注意我正在使用 TruncateTime 方法以避免重复解析日期):
Anyway, try this query (notice that I'm using TruncateTime method in order to avoid resolving the date repeatedly):
var result = from device in
(
from d in DevicesRepository.GetAll()
select new
{
Device = d,
AddedDate = EntityFunctions.TruncateTime(d.Added)
}
)
orderby device.AddedDate
group device by device.AddedDate into g
select new
{
Date = g.Key,
Count = g.Count()
};
希望这会有所帮助.
这篇关于如何在 EntityFramework 中按 DateTime.Date 分组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 EntityFramework 中按 DateTime.Date 分组


- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 输入按键事件处理程序 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01