0

我有一个DataTable让我ID, Description, OptionID

ID  Description OptionID
1   TEST        1
2   TEST2       1
2   TEST3       1
3   TEST4       2

然后根据一个标准,我选择 OptionID 1 并添加到列表中以删除重复项:

 DataRow[] datarow = dt.Select("OptionID = 1");
 AddToList(lst, datarow);

以下是我如何删除重复项并返回 DataRow 列表:

 private static List<DataRow> RemoveDuplicate(List<DataRow> drAllOptions)
    {
        List<DataRow> ldr = new List<DataRow>();
        List<int> safeGuard = new List<int>();
        foreach (DataRow dr in drAllOptions)
        {
            if (!safeGuard.Contains(Convert.ToInt32(dr["ID"])))
            {
                ldr.Add(dr);
                safeGuard.Add(Convert.ToInt32(dr["ID"]));
            }
        }

        return ldr;
    }

然后将返回的 DataRow 列表分配给Repeater,现在我想对这个列表进行排序,尝试使用,lst.sort()但我得到一个例外,Failed to compare two elements in the array.任何帮助都将不胜感激。

PS。我正在使用 .NET 2.0

4

2 回答 2

1

你必须说排序如何排序。看看这个例子

你必须这样做

private static int MyComp(DataRow left, DataRow right)
{
    if (left["ID"] == right["ID"])
    {
       return 0;
    } 
    else
    {
       return 1;
    }
}

lst.Sort(MyComp)
于 2013-08-02T10:36:16.313 回答
-1

删除重复项

public DataTable RemoveDuplicateRows(DataTable dTable, string colName)
{
   Hashtable hTable = new Hashtable();
   ArrayList duplicateList = new ArrayList();

   //Add list of all the unique item value to hashtable, which stores combination of key, value pair.
   //And add duplicate item value in arraylist.
   foreach (DataRow drow in dTable.Rows)
   {
      if (hTable.Contains(drow[colName]))
         duplicateList.Add(drow);
      else
         hTable.Add(drow[colName], string.Empty); 
   }

   //Removing a list of duplicate items from datatable.
   foreach (DataRow dRow in duplicateList)
      dTable.Rows.Remove(dRow);

   //Datatable which contains unique records will be return as output.
      return dTable;
}

这里下面的链接

http://www.dotnetspider.com/resources/4535-Remove-duplicate-records-from-table.aspx

http://www.dotnetspark.com/kb/94-remove-duplicate-rows-value-from-datatable.aspx

用于删除列中的重复项

http://dotnetguts.blogspot.com/2007/02/removing-duplicate-records-from.html
于 2013-08-02T12:36:28.073 回答