作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个 LINQ 查询
var data = (from orders in db.Orders
group orders by orders.OrderDate into dateGroup
select new OrderDateGroup()
{
OrderDate = dateGroup.Key,
OrderCount = dateGroup.Count()
}).Take(10);
最佳答案
您可以使用规范函数:
group orders by EntityFunctions.TruncateTime(orders.OrderDate) into dateGroup
EntityFunctions
方法被称为
规范函数 .这些是所有 Entity Framework 提供程序都支持的一组函数。这些规范函数将被转换为提供者的相应数据源功能。规范函数是访问核心语言之外的功能的首选方式,因为它们使查询保持可移植性。
System.Data.Objects
命名空间来自
System.Data.Entity.dll
.
EntityFunctions
至
DbFunctions
.并且不要忘记包括
System.Data.Entity
命名空间来自
EntityFramework.dll
.
关于c# - 我如何仅在 LINQ 查询中的日期时间中的日期上使用 group by,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30216179/
我是一名优秀的程序员,十分优秀!