我需要将数据 View 复制到数据表中。似乎唯一的方法是逐项遍历dataview并将其复制到数据表中。一定有更好的方法。 最佳答案 dt = DataView.ToTable() 或者dt = DataView.Table.Copy(),或者dt = DataView.Table.Clone();