如何在 C# 中将 DataView 复制到 DataTable

问题描述 投票:0回答:2

我需要将 DataView 复制到 DataTable 中。似乎唯一的方法是逐项迭代 DataView 并将每个项目复制到 DataTable。

有没有一种方法可以在不循环 DataView 的情况下做到这一点。

c# datatable dataview
2个回答
62
投票
dt = DataView.ToTable()

dt = DataView.Table.Copy()

dt = DataView.Table.Clone()

3
投票

答案不适用于我的情况,因为我有带有表达式的列。

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;
© www.soinside.com 2019 - 2024. All rights reserved.