The DataView object doesn't have a Rows property like DataTable.
How do I loop through the rows of a DataView?
|
1
|
|
|
|
|
|
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#
VB.NET
|
||
|
|