You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.7 KiB
80 lines
2.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
|
|
namespace MESClassLibrary.DAL
|
|
{
|
|
public static class DataTableExtend
|
|
{
|
|
/// <summary>
|
|
/// 返回执行Select distinct后的DataTable
|
|
/// </summary>
|
|
/// <param name="SourceTable">源数据表</param>
|
|
/// <param name="FieldNames">字段集</param>
|
|
/// <returns></returns>
|
|
public static DataTable SelectDistinct(DataTable SourceTable, params string[] FieldNames)
|
|
{
|
|
object[] lastValues;
|
|
DataTable newTable;
|
|
DataRow[] orderedRows;
|
|
|
|
if (FieldNames == null || FieldNames.Length == 0)
|
|
throw new ArgumentNullException("FieldNames");
|
|
|
|
lastValues = new object[FieldNames.Length];
|
|
newTable = new DataTable();
|
|
|
|
foreach (string fieldName in FieldNames)
|
|
newTable.Columns.Add(fieldName, SourceTable.Columns[fieldName].DataType);
|
|
|
|
orderedRows = SourceTable.Select("", string.Join(",", FieldNames));
|
|
|
|
foreach (DataRow row in orderedRows)
|
|
{
|
|
if (!fieldValuesAreEqual(lastValues, row, FieldNames))
|
|
{
|
|
newTable.Rows.Add(createRowClone(row, newTable.NewRow(), FieldNames));
|
|
|
|
setLastValues(lastValues, row, FieldNames);
|
|
}
|
|
}
|
|
|
|
return newTable;
|
|
}
|
|
|
|
private static bool fieldValuesAreEqual(object[] lastValues, DataRow currentRow, string[] fieldNames)
|
|
{
|
|
bool areEqual = true;
|
|
|
|
for (int i = 0; i < fieldNames.Length; i++)
|
|
{
|
|
//if (lastValues[i] == null || !lastValues[i].Equals(currentRow[fieldNames[i]]))
|
|
//品牌字母有的大写,有的小写
|
|
//if(lastValues[i] == null || lastValues[i].ToString().ToUpper()!= currentRow[fieldNames[i]].ToString().ToUpper())
|
|
if(lastValues[i] == null || lastValues[i].ToString()!= currentRow[fieldNames[i]].ToString())
|
|
{
|
|
areEqual = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return areEqual;
|
|
}
|
|
|
|
private static DataRow createRowClone(DataRow sourceRow, DataRow newRow, string[] fieldNames)
|
|
{
|
|
foreach (string field in fieldNames)
|
|
newRow[field] = sourceRow[field].ToString();//品牌字母有的大写,有的小写
|
|
|
|
return newRow;
|
|
}
|
|
|
|
private static void setLastValues(object[] lastValues, DataRow sourceRow, string[] fieldNames)
|
|
{
|
|
for (int i = 0; i < fieldNames.Length; i++)
|
|
lastValues[i] = sourceRow[fieldNames[i]];
|
|
}
|
|
}
|
|
}
|
|
|