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

linq 分组求和的一般方法

时间:2017-10-26 11:54:34      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:ase   sel   linq   var   exp   hive   begin   int   pen   

//var query = from d in expenseApplyModel.ApplyBillList.AsEnumerable()
// group d by d.ExpenseItemID into g
// select new
// {
// ExpenseItemID = g.Key,
// ExpenseAmount = g.Sum(t => t.ExpenseAmount)
// };//分组求和新添加的费用项目
var query = expenseApplyModel.ApplyBillList.GroupBy(x => new { x.ExpenseItem, x.ExpenseItemID }).
Select(group => new { peo = group.Key, ExpenseAmount = group.Sum(t => t.ExpenseAmount) });

 

http://www.cnblogs.com/beginor/archive/2009/04/24/1442939.html

 

http://www.cnblogs.com/bingguang/archive/2013/08/22/3275767.html

linq 分组求和的一般方法

标签:ase   sel   linq   var   exp   hive   begin   int   pen   

原文地址:http://www.cnblogs.com/jiangcm/p/7735663.html

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