Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有数据视图源,这需要克隆到新的数据视图。这样我就可以应用我自己的过滤器来影响原始来源。
我试图用那个Table.Clone()or得到这个Table.Copy(),但它对我不起作用,因为它的表是空的。那么如何克隆没有表的数据视图呢?
Table.Clone()
Table.Copy()
对此有任何想法吗?
以下是三种可能的方式:
datatable = DataView.ToTable() datatable = DataViev.Table.Copy(), datatable = DataView.Table.Clone();