I need to copy a dataview into a datatable. It seems like the only way to do so is to iterate through the dataview item by item and copy over to a datatable. There has to be a better way.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
dt = DataView.ToTable() OR dt = DataViev.Table.Copy(), OR dt = DataView.Table.Clone(); |
||||