tags:

views:

417

answers:

1

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.

+12  A: 

DataView .ToTable() method

Jose Basilio
Thanks, google was failing me pretty badly. Hopefully this page will get ranked highly.
Ravedave