Briefly describe DataView.- The data represented in a DataView object can be filtered and sorted. - It has Sort property and RowFilter property. - A databindable, customized view of a DataTable for sorting, filtering, searching, editing, and navigation is represented. - Data is not stored, but it represents a connected view of its corresponding DataTable. - The changes to the DataView’s data will affect the DataTable and in turn the changes to the DataTable’s data will affect all DataViews associated with it.
|