DataRow
배열을 DataTable
… 로 변환하고 싶습니다. 이 작업을 수행하는 가장 간단한 방법은 무엇입니까?
답변
DataRow 배열을 반복하고 다음과 같이 추가 (필요한 경우 DataRow.ImportRow 사용)하여 다음과 같이 추가하지 않는 이유는 무엇입니까?
foreach (DataRow row in rowArray) {
dataTable.ImportRow(row);
}
dataTable에 DataRow 배열의 DataRows와 동일한 스키마가 있는지 확인하십시오.
답변
.Net Framework 3.5 이상
DataTable dt = new DataTable();
DataRow[] dr = dt.Select("Your string");
DataTable dt1 = dr.CopyToDataTable();
그러나 배열에 행이 없으면 The source contains no DataRows 와 같은 오류가 발생할 수 있습니다 . 따라서이 방법을 사용하기로 결정한 경우 CopyToDataTable()
배열에 데이터 행이 있는지 여부를 확인해야합니다.
if (dr.Length > 0)
DataTable dt1 = dr.CopyToDataTable();
MSDN에서 사용 가능한 참조 :
DataTableExtensions.CopyToDataTable 메서드 (IEnumerable)
답변
DataTable dt = new DataTable();
DataRow[] dr = (DataTable)dsData.Tables[0].Select("Some Criteria");
dt.Rows.Add(dr);
답변
또 다른 방법은 DataView를 사용하는 것입니다.
// Create a DataTable
DataTable table = new DataTable()
...
// Filter and Sort expressions
string expression = "[Birth Year] >= 1983";
string sortOrder = "[Birth Year] ASC";
// Create a DataView using the table as its source and the filter and sort expressions
DataView dv = new DataView(table, expression, sortOrder, DataViewRowState.CurrentRows);
// Convert the DataView to a DataTable
DataTable new_table = dv.ToTable("NewTableName");
답변
간단한 방법은 다음과 같습니다.
// dtData is DataTable that contain data
DataTable dt = dtData.Select("Condition=1").CopyToDataTable();
// or existing typed DataTable dt
dt.Merge(dtData.Select("Condition=1").CopyToDataTable());
답변
DataTable dt = new DataTable();
foreach (DataRow dr in drResults)
{
dt.ImportRow(dr);
}
답변
DataTable dt = myDataRowCollection.CopyToDataTable<DataRow>();