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

Linq中的group by多表多字段,Sum求和

时间:2017-04-07 11:51:22      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:count   lin   int   from   compare   求和   esc   lis   des   

 var data = (from a in Items
             group a by new { a.GroupId, a.Id } into b
             orderby new ComparerItem() { GroupId = b.Key.GroupId, Id = b.Key.Id } descending
             select new
              {
                 GroupId = b.Key.GroupId,
                 Id = b.Key.Id,
                 Count = b.Sum(c => c.Count),
                 Weight = b.Sum(c => c.Weight)
               }).OrderBy(t => t.GroupId).ThenBy(t => t.Id);

items 是一个包含4个字段(GroupId, Id, Count, Weight)的list.

效果,按GroupId,Id 分组 ,并统计Count字段和Weight字段

Linq中的group by多表多字段,Sum求和

标签:count   lin   int   from   compare   求和   esc   lis   des   

原文地址:http://www.cnblogs.com/sxypeace/p/6677424.html

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