Chcę przekonwertować DataRow
tablicę na DataTable
... Jaki jest najprostszy sposób, aby to zrobić?
Chcę przekonwertować DataRow
tablicę na DataTable
... Jaki jest najprostszy sposób, aby to zrobić?
Odpowiedzi:
Dlaczego nie powtórzyć swojej tablicy DataRow i dodać (używając DataRow.ImportRow, jeśli to konieczne, aby uzyskać kopię DataRow), coś takiego:
foreach (DataRow row in rowArray) {
dataTable.ImportRow(row);
}
Upewnij się, że dataTable ma ten sam schemat co DataRows w tablicy DataRow.
rowArray.CopyToDataTable();
dlatego, że zachowuje schemat tabeli i nie zastępuje go nowym obiektem tabeli!
Dla .Net Framework 3.5+
DataTable dt = new DataTable();
DataRow[] dr = dt.Select("Your string");
DataTable dt1 = dr.CopyToDataTable();
Ale jeśli w tablicy nie ma żadnych wierszy, może to spowodować błędy, takie jak źródło nie zawiera DataRows . Dlatego, jeśli zdecydujesz się użyć tej metody CopyToDataTable()
, powinieneś sprawdzić tablicę, aby wiedzieć, że zawiera datarows, czy nie.
if (dr.Length > 0)
DataTable dt1 = dr.CopyToDataTable();
Odniesienie dostępne w MSDN: DataTableExtensions.CopyToDataTable Method (IEnumerable)
copyToDataTable()
? Nie znalazłem tego w .net 2.0
copyToDataTable()
metoda tworzy idealną kopię kolumn wybranych wierszy, podczas gdy datatable.ImportRow(row)
metoda nie
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.
”. Błąd wersji z klonem: „ 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.
” Uwaga: StoreOrder
jest to pierwsza kolumna w schemacie tabeli. Wygląda na to, że próbuje wcisnąć cały datarow do tej pierwszej kolumny
Innym sposobem jest użycie 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");
Prosty sposób to:
// 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+ dodał DataTableExtensions, użyj metody DataTableExtensions.CopyToDataTable
Dla tablicy datarow po prostu użyj .CopyToDataTable (), a zwróci ona datatable.
Do użytku pojedynczego
new DataRow[] { myDataRow }.CopyToDataTable()
Jeśli ktoś tego potrzebuje w VB.NET:
Dim dataRow as DataRow
Dim yourNewDataTable as new datatable
For Each dataRow In yourArray
yourNewDataTable.ImportRow(dataRow)
Next
Najpierw musisz sklonować strukturę tabeli danych, a następnie zaimportować wiersze za pomocą pętli 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;