Ответ не работает для моей ситуации, потому что у меня есть столбцы с выражениями. DataView.ToTable()
будет копировать только значения, а не выражения.
Сначала я попробовал это:
//clone the source table
DataTable filtered = dt.Clone();
//fill the clone with the filtered rows
foreach (DataRowView drv in dt.DefaultView)
{
filtered.Rows.Add(drv.Row.ItemArray);
}
dt = filtered;
но это решение было очень медленным, даже для 1000 строк.
Решение, которое сработало для меня:
//create a DataTable from the filtered DataView
DataTable filtered = dt.DefaultView.ToTable();
//loop through the columns of the source table and copy the expression to the new table
foreach (DataColumn dc in dt.Columns)
{
if (dc.Expression != "")
{
filtered.Columns[dc.ColumnName].Expression = dc.Expression;
}
}
dt = filtered;