码迷,mamicode.com
首页 > 编程语言 > 详细

Linq Asenumerable();

时间:2016-07-11 19:08:38      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:


//总过夜天数
decimal counts = table.AsEnumerable().Where(n => n.Field<string>("analy_type") == "合计").Sum(n => n.Field<decimal>("counts"));

//培训率
decimal px_rate = table.AsEnumerable().Where(n => n.Field<string>("analy_type") == "合计").Sum(n => n.Field<decimal>("px_rate") * n.Field<decimal>("capNum_type"));
px_rate = Math.Round(capNum_type == 0 ? 0 : px_rate / capNum_type, 4);

Linq Asenumerable();

标签:

原文地址:http://www.cnblogs.com/zzzzbk/p/5660900.html

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