摘要:從DataTable中取出某欄位不重覆(Distinct)的資料
DataView tmpView = targetTable.DefaultView;
方法1:
DataTable tmpTable = tmpView.ToTable("tableName", true, "tableColumnName");
方法2:
DataTable tmpTable = tmpView.ToTable(true, "tableColumnName");
設成Distinct為true或是false,取決於是否要找出不重覆資料
Y2J's Life:http://kimenyeh.blogspot.tw/