Wednesday, May 1, 2013

How to create a DataView from DataTable?


In order to create a DataView from a DataTable, use instantiate the DataView object by passing DataTable as parameter in the constructor.

eg.

DataView dView = new DataView(dTable);

No comments:

Post a Comment