CLASS |
DESCRIPITION |
Constraint, ConstraintCollection, UniqueConstraint, ForeigenKeyConstraint |
Constraints are rules set on a database table and its columns to maintain the integrity of the data. The Constraint class objects represent a constraint that you can apply on a DataColumn object. Some of these constraints are primary key, uniqueness, and foreign key. The ConstraintCollection class represents a collection of constraints for a DataTable. The UniqueConstraint and ForeignKeyConstraint represent unique and foreign key constraints. |
DataColumn, DataColumnCollection |
The DataColumn object represents a column of a table. The DataColumnCollection represents a collection of columns of a table. |
DataRelation, DataRelationCollection |
The DataRelation object represents a parent/child relationship between two DataTable objects. The DataRelationCollection represents a collection of DataRelation. |
DataRow, DataRowCollection |
A DataRow object represents a row of a table, and the DataRowCollection represent a collection of rows. |
DataRowView |
The DataRowView represents a view of DataRow. It's useful when you want to attach a DataRow with databound controls such as a DataGrid. |
DataSet |
In ADO.NET a DataSet object is a replacement of ADO recordset and represents an in-memory cache of data. A DataSet is a collection of DataTable objects. |
DataTable, DataTableCollection |
A DataTable object represents an in-memory cache of a table, and the DataTableCollection is a collection of DataTable objects. |
DataView |
A DataView object represents a data bindable, for sorting, filtering, searching, editing, and navigation. |
DataViewManager |
The DefaultViewManager represents the default view of a DataSet or DataTableCollection. |