这篇文章主要介绍了ASP.NET DataTable去掉重复行的2种方法,本文直接给出去重代码,需要的朋友可以参考下
第一种,使用Linq查询表达式,code如下
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
DataTable testtable = new DataTable(); |
第二种方法
利用dataview来过滤datatable
?
1 2 |
<STRONG>testtable = testtable.DefaultView.ToTable(true, new string[] { "ID", "ProductName" }); |