将 SQL 组转换为 Linq for Entity Framework 中的等效项
我使用 EF 4 和 c#、MS SQL 2008。
我有一个 T-SQL:
select COUNT(*)
from CmsContents
where IsPublished = 1 and isDeleted = 0
GROUP BY Day(Date)
我需要将其转换为 EF,但我无法获取它。
这是我正在使用的:
var contentsByMonth = context.CmsContents
.Where(c => c.IsPublished == true & c.IsDeleted == false)
.GroupBy(c => c.Date.Month).ToList().Count();
你能给我一个例子吗?谢谢
I use EF 4 and c#, MS SQL 2008.
I have a T-SQL:
select COUNT(*)
from CmsContents
where IsPublished = 1 and isDeleted = 0
GROUP BY Day(Date)
I need convert it to EF, but I'm not able to get it.
Here what I'm using:
var contentsByMonth = context.CmsContents
.Where(c => c.IsPublished == true & c.IsDeleted == false)
.GroupBy(c => c.Date.Month).ToList().Count();
Could you give me an example? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)