EF中GroupBy扩展方法的简单使用
Posted 紫晶城
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EF中GroupBy扩展方法的简单使用相关的知识,希望对你有一定的参考价值。
var ShopList = ShopService.GetEntities(x => x.IsDelete == false).OrderByDescending(x => x.Sort).GroupBy(x => new { x.Id, x.CityName }).Select(x => new { //Id = x.Key.Id, Name = x.Key.CityName, }).ToList(); string str = string.Empty; foreach (var item in ShopList) { str += ",‘" + item.Name + "‘"; } ViewBag.Str = str.Substring(1);// 城市1,城市2,城市3
以上是关于EF中GroupBy扩展方法的简单使用的主要内容,如果未能解决你的问题,请参考以下文章
pandas GroupBy上的方法apply:一般性的“拆分-应用-合并”
GroupBy 与 EF Core 6.0 和 SQL Server