Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
if that answered your question, you should mark as accepted – TStamper Apr 20 '09 at 20:03

1 Answer

up vote 18 down vote accepted

dt = DataView.ToTable()

OR

dt = DataViev.Table.Copy(),

OR

dt = DataView.Table.Clone();

share|improve this answer
Thanks, google was failing me pretty badly. Hopefully this page will get ranked highly. – Ravedave Apr 20 '09 at 19:36
Thanks Jose..It worked... – karthik k Feb 15 '12 at 11:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.