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

20180322 对DataTable里面的数据进行去重

时间:2018-03-22 17:23:29      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:second   and   line   time   color   str   ota   row   tostring   

对DataTable里面的数据进行去重

DataTable dt = new DataTable();
            dt.Columns.Add("Id", typeof(int));
            dt.Columns.Add("Nu", typeof(int));
            Random r = new Random(DateTime.Now.Millisecond);
           
            //DataTable 去重
            for (int i = 0; i < 11; i++)
            {
                dt.Rows.Add(r.Next(1, 11),10);
            }
            dt.Rows.Add(1);
            DataView dv = new DataView(dt);
            dt = dv.ToTable(true, new string[] {"Id","Nu"});    //对Id,Nu 进行过滤,true表示使用distinct方法

            foreach (DataRow item in dt.Rows)
            {
                Console.WriteLine(item["Id"].ToString());
            }

 

20180322 对DataTable里面的数据进行去重

标签:second   and   line   time   color   str   ota   row   tostring   

原文地址:https://www.cnblogs.com/Soar-Pang/p/8624243.html

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