답변:
DataRow 배열을 반복하고 다음과 같이 추가 (필요한 경우 DataRow.ImportRow 사용)하여 다음과 같이 추가하지 않는 이유는 무엇입니까?
foreach (DataRow row in rowArray) {
dataTable.ImportRow(row);
}
dataTable에 DataRow 배열의 DataRows와 동일한 스키마가 있는지 확인하십시오.
rowArray.CopyToDataTable();
이것은 테이블 스키마를 유지하고 새 테이블 객체로 대체하지 않기 때문에 선호 합니다!
.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)
copyToDataTable()
? .net 2.0에서 찾지 못했습니다
copyToDataTable()
method가 선택한 행의 열에 대한 완벽한 사본을 생성하는 반면 datatable.ImportRow(row)
method는 생성 하지 않기 때문에 정답으로 표시되어야합니다.
DataTable dt = new DataTable();
DataRow[] dr = (DataTable)dsData.Tables[0].Select("Some Criteria");
dt.Rows.Add(dr);
Input array is longer than the number of columns in this table.
". With-Clone 버전 오류 : " Unable to cast object of type 'System.Data.DataRow' to type 'System.IConvertible'.Couldn't store <System.Data.DataRow> in StoreOrder Column. Expected type is Int64.
"참고 : StoreOrder
은 테이블 스키마의 첫 번째 열입니다. 전체 데이터 행을 첫 번째 열에 끼 우려 고하는 것 같습니다
또 다른 방법은 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 Assetdaterow =
(
from s in dtResourceTable.AsEnumerable()
where s.Field<DateTime>("Date") == Convert.ToDateTime(AssetDate)
select s
).CopyToDataTable();
.Net 3.5+ 추가 DataTableExtensions, DataTableExtensions.CopyToDataTable 메서드 사용
datarow 배열의 경우 .CopyToDataTable ()을 사용하면 datatable을 반환합니다.
단일 데이터 행 사용
new DataRow[] { myDataRow }.CopyToDataTable()
먼저 데이터 테이블의 구조를 복제 한 다음 for 루프를 사용하여 행을 가져와야합니다.
DataTable dataTable =dtExisting.Clone();
foreach (DataRow row in rowArray) {
dataTable.ImportRow(row);
}
DataTable dataTable = new DataTable();
dataTable = OldDataTable.Tables[0].Clone();
foreach(DataRow dr in RowData.Tables[0].Rows)
{
DataRow AddNewRow = dataTable.AddNewRow();
AddNewRow.ItemArray = dr.ItemArray;
dataTable.Rows.Add(AddNewRow);
}
DataTable dataTable = new DataTable(); dataTable.ImportRow(dataRow); MyControl.DataSource = dataTable;