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

inq to datatable group by 多列 实现

时间:2016-12-21 09:53:28      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:threading   select   .net   group by   read   void   row   实现   span   

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication2
{
    internal class Program
    {
        private static void Main(string[] args)
        {
            DataTable dt = new DataTable();
            dt.Columns.Add("type", typeof (string));
            dt.Columns.Add("time", typeof (string));
            dt.Columns.Add("action", typeof (string));
            dt.Columns.Add("sum", typeof (string));

            dt.Rows.Add("A", "09:00:00", "举手", "5");
            dt.Rows.Add("A", "15:00:00", "扭腰", "3");
            dt.Rows.Add("A", "19:00:00", "扭腰", "3");

            dt.Rows.Add("B", "08:00:00", "抬脚", "2");
            dt.Rows.Add("B", "11:00:00", "举手", "2");

            dt.Rows.Add("C", "08:00:00", "扭脖子", "6");
            dt.Rows.Add("C", "09:00:00", "提臀", "5");
            var query = from t in dt.AsEnumerable()
                group t by new
                {
                    t1 = t.Field<string>("type")
                    //,t2 = t.Field<DateTime>("arrivalTime")多个条件
                }
                into m
                select new
                {
                    time = string.Join("---", m.Select(n => n.Field<string>("time")).ToArray()),
                    type = m.Key.t1,
                    action = string.Join("/", m.Select(n => n.Field<string>("action")).ToArray()),
                    rowcount = m.Count()
                };
              var sss = query.ToList();

     
        }
    }
}

参考http://blog.csdn.net/q107770540/article/details/6086577

inq to datatable group by 多列 实现

标签:threading   select   .net   group by   read   void   row   实现   span   

原文地址:http://www.cnblogs.com/y112102/p/6206249.html

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