Answer:
The DataView provides different views of the data stored in a DataTable. That is we can customize the views of data from a DataTable. DataView can be used to sort, filter, and search the data in a DataTable , additionally we can add new rows and modify the content in a DataTable.
We can create DataView in two ways. Either we can use the DataView constructor, or we can create a reference to the DefaultView property of the DataTable.
DataView dView = new DataView(dTbl);
dView = dataSet.Tables(0).DefaultView;
Asked In: Many Interviews |
Alert Moderator