May 2002
Beginner to intermediate
560 pages
11h 36m
English
A DataView is a view of a DataTable with a settable sort order and filtering criteria. Each DataTable contains a property that points to the DefaultView. You can set the properties of the DefaultView as well as create additional DataViews over the same DataTable. This capability is useful for exposing the same data in multiple formats without the overhead of multiple copies.
The following properties of DataView are settable:
Sort: a string specifying sort order.
RowFilter: a filter based on row values.
RowStateFilter: a filter based on added, deleted, modified, or current rows.
ApplyDefaultSort: a property that applies a default sort order based on primary key. ApplyDefaultSort works only if the Sort property ...