Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looping through rows in a DataView

The DataView object doesn't have a Rows property like DataTable.

How do I loop through the rows of a DataView?

like image 497
Alex Angas Avatar asked Sep 15 '09 15:09

Alex Angas


1 Answers

The DataView object itself is used to loop through DataView rows.

DataView rows are represented by the DataRowView object. The DataRowView.Row property provides access to the original DataTable row.

C#

foreach (DataRowView rowView in dataView) {     DataRow row = rowView.Row;     // Do something // } 

VB.NET

For Each rowView As DataRowView in dataView     Dim row As DataRow = rowView.Row     ' Do something ' Next 
like image 73
Alex Angas Avatar answered Nov 13 '22 10:11

Alex Angas