程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 過濾DataTable中的指定字段重復的行

過濾DataTable中的指定字段重復的行

編輯:C#入門知識

#region   過濾DataTable中的指定字段重復的行


    ///   <summary>
    ///   過濾DataTable中的指定字段重復的行
    ///   </summary>
    ///   <param   name= "dt "> </param>
    ///   <param   name= "FieldName "> </param>
    ///   <returns> </returns>
    public DataTable SelectDistinctByField(DataTable dt, string FieldName)
    {
        DataTable returnDt = new DataTable();
        returnDt = dt.Copy();//將原DataTable復制一個新的
        DataRow[] drs = returnDt.Select(" ", FieldName);//將DataTable按指定的字段排序
        object LastValue = null;
        for (int i = 0; i < drs.Length; i++)
        {
            if ((LastValue == null) || (!(ColumnEqual(LastValue, drs[i][FieldName]))))
            {
                LastValue = drs[i][FieldName];
                continue;
            }


            drs[i].Delete();
        }


        return returnDt;
    }


    private bool ColumnEqual(object A, object B)
    {
        //   Compares   two   values   to   see   if   they   are   equal.   Also   compares   DBNULL.Value.
        //   Note:   If   your   DataTable   contains   object   fields,   then   you   must   extend   this
        //   function   to   handle   them   in   a   meaningful   way   if   you   intend   to   group   on   them.


        if (A == DBNull.Value && B == DBNull.Value)   //     both   are   DBNull.Value
            return true;
        if (A == DBNull.Value || B == DBNull.Value)   //     only   one   is   DBNull.Value
            return false;
        return (A.Equals(B));     //   value   type   standard   comparison
    }


    #endregion


摘自 chinaboykai

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved