6.5. DataViews and Common Transformations

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 ...

Get Essential ADO.NET now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.