码迷,mamicode.com
首页 > 其他好文 > 详细

EF中GroupBy扩展方法的简单使用

时间:2018-04-18 20:12:14      阅读:340      评论:0      收藏:0      [点我收藏+]

标签:简单   pre   als   new   code   service   each   erb   substring   

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扩展方法的简单使用

标签:简单   pre   als   new   code   service   each   erb   substring   

原文地址:https://www.cnblogs.com/SeNaiTes/p/8877097.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!