データセットオブジェクトがあります。objdsにはTable1という名前のテーブルが含まれています。Table1には、ProcessNameという名前の列が含まれています。このProcessNameには繰り返される名前が含まれているため、個別の名前のみを選択します。これは可能ですか?
intUniqId[i] = (objds.Tables[0].Rows[i]["ProcessName"].ToString());
データセットオブジェクトがあります。objdsにはTable1という名前のテーブルが含まれています。Table1には、ProcessNameという名前の列が含まれています。このProcessNameには繰り返される名前が含まれているため、個別の名前のみを選択します。これは可能ですか?
intUniqId[i] = (objds.Tables[0].Rows[i]["ProcessName"].ToString());
回答:
DataView view = new DataView(table);
DataTable distinctValues = view.ToTable(true, "Column1", "Column2" ...);
table.AsEnumerable().GroupBy(row => row.Field<int>("mo")).Select(group => group.First()).CopyToDataTable()
次の1行のコードは、aの重複行を回避しますDataTable
。
dataTable.DefaultView.ToTable(true, "employeeid");
どこ:
の最初のパラメータToTable()
は、個別の行が必要かどうかを示すブール値です。
の2番目のパラメータは、ToTable()
個別の行を選択する必要がある基準となる列名です。これらの列のみが返されるデータテーブルに含まれます。
同じことをDataSet
特定のにアクセスすることで、から行うことができますDataTable
。
dataSet.Tables["Employee"].DefaultView.ToTable(true, "employeeid");
DefaultView
プロパティを指すので、私はこの答えが最も好きDataTable
です。
ToTable(boolean, params string[] columnNames)
メソッドでは、複数の列を指定できます。
DataTable dt = new DataTable();
dt.Columns.Add("IntValue", typeof(int));
dt.Columns.Add("StringValue", typeof(string));
dt.Rows.Add(1, "1");
dt.Rows.Add(1, "1");
dt.Rows.Add(1, "1");
dt.Rows.Add(2, "2");
dt.Rows.Add(2, "2");
var x = (from r in dt.AsEnumerable()
select r["IntValue"]).Distinct().ToList();
あなたはそのように使うことができます:
data
です DataTable
data.DefaultView.ToTable(true, "Id", "Name", "Role", "DC1", "DC2", "DC3", "DC4", "DC5", "DC6", "DC7");
ただし、パフォーマンスは低下します。以下のコードを使用してみてください:
data.AsEnumerable().Distinct(System.Data.DataRowComparer.Default).ToList();
パフォーマンスのために; http://onerkaya.blogspot.com/2013/01/distinct-dataviewtotable-vs-linq.html
var distinctRows = (from DataRow dRow in dtInventory.Rows
select dRow["column_name"] ).Distinct();
var distinctRows = (from DataRow dRow in dtInventory.Rows
select dRow["col1"], dRow["col2"].. ).Distinct();
上記の答えを改善するには:データビューのToTable関数に「個別」フラグがあります。
//This will filter all records to be distinct
dt = dt.DefaultView.ToTable(true);
以下の作品。.NET 3.5 SP1で動作しています
// Create the list of columns
String[] szColumns = new String[data.Columns.Count];
for (int index = 0; index < data.Columns.Count; index++)
{
szColumns[index] = data.Columns[index].ColumnName;
}
// Get the distinct records
data = data.DefaultView.ToTable(true, szColumns);
私はたまたまこれを見つけました:http : //support.microsoft.com/default.aspx?scid=kb ; en-us ; 326176#1
同様の何かを探している間、特に.net 2.0専用
IMが、DataTable.Select()の使用中にOPが個別のものを探していたと想定しています。(Select()は個別をサポートしていません)
上記のリンクのコードは次のとおりです。
class DataTableHelper
{
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});
}
}
return dt;
}
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
}
}
string[] TobeDistinct = {"Name","City","State"};
DataTable dtDistinct = GetDistinctRecords(DTwithDuplicate, TobeDistinct);
//Following function will return Distinct records for Name, City and State column.
public static DataTable GetDistinctRecords(DataTable dt, string[] Columns)
{
DataTable dtUniqRecords = new DataTable();
dtUniqRecords = dt.DefaultView.ToTable(true, Columns);
return dtUniqRecords;
}
構文:-
DataTable dt = ds.Tables[0].DefaultView.ToTable(true, "ColumnName");
EX:-
DataTable uniqueCols = dsUDFlable.Tables[0].DefaultView.ToTable(true, "BorrowerLabelName");
最も簡単な解決策は、LINQを使用して、結果をDataTableに変換することです。
//data is a DataTable that you want to change
DataTable result = data.AsEnumerable().Distinct().CopyToDataTable < DataRow > ();
これはasp.net 4.0 ^フレームワークでのみ有効で、Ivan Ferrer Villaが指摘したようにSystem.Data.DataSetExtensionsへの参照が必要です。
System.Data.DataSetExtensions
DataTable dt = new DataTable("EMPLOYEE_LIST");
DataColumn eeCode = dt.Columns.Add("EMPLOYEE_CODE", typeof(String));
DataColumn taxYear = dt.Columns.Add("TAX_YEAR", typeof(String));
DataColumn intData = dt.Columns.Add("INT_DATA", typeof(int));
DataColumn textData = dt.Columns.Add("TEXT_DATA", typeof(String));
dt.PrimaryKey = new DataColumn[] { eeCode, taxYear };
一意と見なされるeecodeとtaxyearを組み合わせてデータテーブルをフィルタリングします
objds.Table1.Select(r => r.ProcessName).AsEnumerable().Distinct();
のようなもの?
SELECT DISTINCT .... FROMテーブルのWHERE条件
http://www.felixgers.de/teaching/sql/sql_distinct.html
注:宿題の質問?そして神はGoogleを祝福します。
DataTable dtbs = new DataTable();
DataView dvbs = new DataView(dt);
dvbs.RowFilter = "ColumnName='Filtervalue'";
dtbs = dvbs.ToTable();