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

DataTable Group By或运算 Linq Aggregate的使用

时间:2017-05-06 14:21:35      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:group by   custom   line   bsp   span   sum   http   name   system   

 class Program
    {
        static void Main(string[] args)
        {
            DataTable dt = new DataTable();
            dt.Columns.Add("Name", typeof(System.String));
            dt.Columns.Add("Value", typeof(System.Int32));

            dt.Rows.Add("07", 1);
            dt.Rows.Add("07", 2);
            dt.Rows.Add("07", 4);
            dt.Rows.Add("07", 8);
            dt.Rows.Add("07", 4);

            dt.Rows.Add("08", 2);
            dt.Rows.Add("08", 8);
            dt.Rows.Add("08", 16);
            dt.Rows.Add("08", 8);
            dt.Rows.Add("08", 16);

            var query = from t in dt.AsEnumerable()
                        group t by new { Name = t.Field<string>("Name") } into m
                        select new
                        {
                            Name = m.Key.Name,
                            Sum = m.Sum(n => n.Field<int>("Value")),
                            CustomerValue = m.Aggregate(0, (d, n) =>
                            {
                                return d | n.Field<int>("Value");
                            })
                        };

            query.ToList().ForEach(p =>
            {
                Console.WriteLine($"Name:{p.Name}\tSum:{p.Sum}\tCustomerValue:{p.CustomerValue}");
            });
            Console.ReadKey();
        }
    }

技术分享

 

DataTable Group By或运算 Linq Aggregate的使用

标签:group by   custom   line   bsp   span   sum   http   name   system   

原文地址:http://www.cnblogs.com/GarsonZhang/p/6816463.html

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