zoukankan      html  css  js  c++  java
  • Asp.Net : 实现一个 DataSet 或DataTable SELECT DISTINCT (字段唯一性)

            //此方法将所选字段的唯一值复制到一个新的 DataTable 。 如果字段包含 NULL 值,目标表中的记录还包含 NULL 值 
            public DataTable SelectDistinct(string TableName, DataTable SourceTable, string FieldName)
            {
                DataTable dt 
    = new DataTable(TableName);
                dt.Columns.Add(FieldName, SourceTable.Columns[FieldName].DataType);

                
    object LastValue = null;
                
    foreach (DataRow dr in SourceTable.Select("", FieldName))
                {
                    
    if (LastValue == null || !(ColumnEqual(LastValue, dr[FieldName])))
                    {
                        LastValue 
    = dr[FieldName];
                        dt.Rows.Add(
    new object[] { LastValue });
                    }
                }
                
    ////if (ds != null)
                
    ////ds.Tables.Add(dt);
                return dt;
            }
            
    static bool ColumnEqual(object A, object B)
            {           
                
    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   
            }
  • 相关阅读:
    Springcloudalibaba之Nacos服务注册和配置中心
    SpringBoot监控工具包Actuator使用
    服务注册中心之Consul使用
    微服务项目SpringcloudAlibaba
    微服务之链路跟踪SpringCloudSleuth
    微服务之消息驱动SpringCloudStream
    微服务之消息总线SpringCloudBus
    微服务之配置中心Config
    深入理解javascript原型和闭包(1)——一切都是对象
    js中函数创建的三种方式
  • 原文地址:https://www.cnblogs.com/Fooo/p/1513696.html
Copyright © 2011-2022 走看看