20190917001 - 去除DataTable中重复的数据
// 去除DataTable中重复的数据需要用到DataView,代码如下:
DataView dv = new DataView(dt1);//_dt是一个DataTable类型的变量
//dt1 = dv.ToTable(true, "业务员");
//第一个参数为true,去除重复数据,false不去除。
//第二个参数需要显示的字段
dt1 = dv.ToTable(true, "业务员");//去除name列名字相同的,并显示name列。
this.dataGridView1.DataSource = dt1;
this.textBox1.Text = dt1.Rows.Count.ToString();