May 2010
Intermediate to advanced
1752 pages
41h 17m
English
The DataTable type defines many members, many of which are identical in name and functionality to those of the DataSet. Table 22-7 describes some core members of the DataTable type beyond Rows and Columns.
| Member | Meaning in Life |
|---|---|
| CaseSensitive | Indicates whether string comparisons within the table are case sensitive. The default value is false. |
| ChildRelations | Returns the collection of child relations for this DataTable (if any). |
| Constraints | Gets the collection of constraints maintained by the table. |
| Copy() | A method that copies the schema and data of a given DataTable into a new instance. |
| DataSet | Gets the DataSet that contains this table (if any). |
| DefaultView | Gets a customized view of ... |