asp.net core 3.1 efcore group by 使用方法

Posted wx6070687864c6e

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp.net core 3.1 efcore group by 使用方法相关的知识,希望对你有一定的参考价值。

//获取上下文
var recordContext = _dbContext.Set<tenant_couponrecord>();
var groupByCoupon = (from r in recordContext
where r.tenant_id == tenant_id && r.shop_code == shop_code && couponIdlist.Contains(r.CouponId)
group r by r.CouponId into gc
select new CouponId = gc.Key, Count = gc.Count() ).ToList();

if (groupByCoupon != null && groupByCoupon.Count > 0)

foreach (var c in ret)

var groupC = groupByCoupon.Find(p => p.CouponId == c.Id);
if(groupC!=null)

c.RecoredCount = groupC.Count;



1、先获取该表/实体的 dbContext上下文;

2、写linq的lambda表达式;

3、表达式外面套一个ToList(),就可以像正常的List正常使用了。

更多可以学习ASP.NET Core 3.1官方教程 http://www.zyiz.net/xilie-293.html

作者:沐雪 文章均系作者原创或翻译,如有错误不妥之处,欢迎各位批评指正。本文版权归作者,如需转载恳请注明。 如果您觉得阅读这篇博客让你有所收获,
​​​ 为之网-热爱软件编程 http://www.weizhi.cc/​

以上是关于asp.net core 3.1 efcore group by 使用方法的主要内容,如果未能解决你的问题,请参考以下文章

为啥我的 ASP.NET Core 3.1 控制器会自动为从视图返回的 EF Core 模型分配 ID?

创建基于ASP.NET core 3.1 的RazorPagesMovie项目-应用模型类配合基架生成工具生成Razor页面

2021-06-24 .NET高级班 65-ASP.NET Core EFCore数据库(EFCore调优技巧)

ASP.NET Core 3.1“‘用户’不包含‘FindFirstValue’的定义”

2021-06-23 .NET高级班 63-ASP.NET Core EFCore数据库(CodeFirst的使用)

2021-06-24 .NET高级班 64-ASP.NET Core EFCore数据库(DBFirst的使用)