将 SQL 组转换为 Linq for Entity Framework 中的等效项

发布于 2024-12-10 02:07:36 字数 465 浏览 1 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清醇 2024-12-17 02:07:36
var contentsByMonth = context.CmsContents
                .Where(c => c.IsPublished == true & c.IsDeleted == false)
                .GroupBy(c => c.Date.Day)
                .Select(g => new {Day = g.Key, Counts = g.Count()})
                .ToList();
var contentsByMonth = context.CmsContents
                .Where(c => c.IsPublished == true & c.IsDeleted == false)
                .GroupBy(c => c.Date.Day)
                .Select(g => new {Day = g.Key, Counts = g.Count()})
                .ToList();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文