ConstraintCollection Class
Represents a collection of constraints for a DataTable.
Namespace: System.Data
Assembly: System.Data (in System.Data.dll)
The ConstraintCollection type exposes the following members.
| Name | Description | |
|---|---|---|
![]() ![]() | Count | Gets the total number of elements in a collection. (Inherited from InternalDataCollectionBase.) |
![]() ![]() | IsReadOnly | Gets a value that indicates whether the InternalDataCollectionBase is read-only. (Inherited from InternalDataCollectionBase.) |
![]() ![]() | IsSynchronized | Gets a value that indicates whether the InternalDataCollectionBase is synchonized. (Inherited from InternalDataCollectionBase.) |
![]() ![]() | Item[Int32] | Gets the Constraint from the collection at the specified index. |
![]() ![]() | Item[String] | Gets the Constraint from the collection with the specified name. |
![]() ![]() | SyncRoot | Gets an object that can be used to synchronize the collection. (Inherited from InternalDataCollectionBase.) |
| Name | Description | |
|---|---|---|
![]() ![]() | Add(Constraint) | Adds the specified Constraint object to the collection. |
![]() ![]() | Add(String, DataColumn, Boolean) | Constructs a new UniqueConstraint with the specified name, DataColumn, and value that indicates whether the column is a primary key, and adds it to the collection. |
![]() ![]() | Add(String, DataColumn, DataColumn) | Constructs a new ForeignKeyConstraint with the specified name, parent column, and child column, and adds the constraint to the collection. |
![]() ![]() | Add(String, DataColumn[], Boolean) | Constructs a new UniqueConstraint with the specified name, array of DataColumn objects, and value that indicates whether the column is a primary key, and adds it to the collection. |
![]() ![]() | Add(String, DataColumn[], DataColumn[]) | Constructs a new ForeignKeyConstraint, with the specified arrays of parent columns and child columns, and adds the constraint to the collection. |
![]() ![]() | AddRange | Copies the elements of the specified ConstraintCollection array to the end of the collection. |
![]() ![]() | CanRemove | Indicates whether a Constraint can be removed. |
![]() ![]() | Clear | Clears the collection of any Constraint objects. |
![]() ![]() | Contains | Indicates whether the Constraint object specified by name exists in the collection. |
![]() ![]() | CopyTo(Array, Int32) | Copies all the elements of the current InternalDataCollectionBase to a one-dimensional Array, starting at the specified InternalDataCollectionBase index. (Inherited from InternalDataCollectionBase.) |
![]() ![]() | CopyTo(Constraint[], Int32) | Copies the collection objects to a one-dimensional Array instance starting at the specified index. |
![]() ![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() ![]() | GetEnumerator | Gets an IEnumerator for the collection. (Inherited from InternalDataCollectionBase.) |
![]() ![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() ![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() ![]() | IndexOf(Constraint) | Gets the index of the specified Constraint. |
![]() ![]() | IndexOf(String) | Gets the index of the Constraint specified by name. |
![]() ![]() | Remove(Constraint) | Removes the specified Constraint from the collection. |
![]() ![]() | Remove(String) | Removes the Constraint object specified by name from the collection. |
![]() ![]() | RemoveAt | Removes the Constraint object at the specified index from the collection. |
![]() ![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | CollectionChanged | Occurs whenever the ConstraintCollection is changed because of Constraint objects being added or removed. |
The ConstraintCollection is accessed through the DataTable.Constraints property.
The ConstraintCollection can contain both UniqueConstraint and ForeignKeyConstraint objects for the DataTable. A UniqueConstraint object makes sure that data in a specific column is always unique to preserve the data integrity. The ForeignKeyConstraint determines what will occur in related tables when data in the DataTable is either updated or deleted. For example, if a row is deleted, the ForeignKeyConstraint will determine whether the related rows are also deleted (a cascade), or some other course of action.
Note |
|---|
When you add a DataRelation that creates a relationship between two tables to a DataSet, both a ForeignKeyConstraint and a UniqueConstraint are created automatically. The UniqueConstraint is applied to the primary key column in the parent DataTable, and the constraint is added to that table's ConstraintCollection. The ForeignKeyConstraint is applied to the primary key column and the foreign key column, and the constraint is added to the child table's ConstraintCollection. |
The ConstraintCollection uses standard collection methods such as Add, Clear, and Remove. In addition, the Contains method can be used to look for the existence of a particular constraint in the collection.
A UniqueConstraint is created when a DataColumn with its Unique property set to true is added to a DataTable object's DataColumnCollection.
A ForeignKeyConstraint is created when a DataRelation is added to a DataSet object's DataRelationCollection.
The first example creates a DataTable, and adds a DataColumn (with its Unique property set to true) to the DataColumnCollection. The second example creates a DataSet, two DataTable objects, four columns, and a DataRelation. The count of constraints is then printed to show that a ForeignKeyConstraint and a UniqueConstraint are created when a DataRelation is added to the DataSet object's DataRelationCollection.
private void MakeTableWithUniqueConstraint() { DataTable table = new DataTable("table"); DataColumn column = new DataColumn("UniqueColumn"); column.Unique=true; table.Columns.Add(column); // Print count, name, and type. Console.WriteLine("Constraints.Count " + table.Constraints.Count); Console.WriteLine(table.Constraints[0].ConstraintName); Console.WriteLine(table.Constraints[0].GetType() ); // Add a second unique column. column = new DataColumn("UniqueColumn2"); column.Unique=true; table.Columns.Add(column); // Print info again. Console.WriteLine("Constraints.Count " + table.Constraints.Count); Console.WriteLine(table.Constraints[1].ConstraintName); Console.WriteLine(table.Constraints[1].GetType() ); } private void MakeTableWithForeignConstraint() { // Create a DataSet. DataSet dataSet = new DataSet("dataSet"); // Make two tables. DataTable customersTable= new DataTable("Customers"); DataTable ordersTable = new DataTable("Orders"); // Create four columns, two for each table. DataColumn name = new DataColumn("Name"); DataColumn id = new DataColumn("ID"); DataColumn orderId = new DataColumn("OrderID"); DataColumn cDate = new DataColumn("OrderDate"); // Add columns to tables. customersTable.Columns.Add(name); customersTable.Columns.Add(id); ordersTable.Columns.Add(orderId); ordersTable.Columns.Add(cDate); // Add tables to the DataSet. dataSet.Tables.Add(customersTable); dataSet.Tables.Add(ordersTable); // Create a DataRelation for two of the columns. DataRelation myRelation = new DataRelation("CustomersOrders",id,orderId,true); dataSet.Relations.Add(myRelation); // Print TableName, Constraints.Count, // ConstraintName and Type. foreach(DataTable t in dataSet.Tables) { Console.WriteLine(t.TableName); Console.WriteLine("Constraints.Count " + t.Constraints.Count); Console.WriteLine("ParentRelations.Count " + t.ParentRelations.Count); Console.WriteLine("ChildRelations.Count " + t.ChildRelations.Count); foreach(Constraint cstrnt in t.Constraints) { Console.WriteLine(cstrnt.ConstraintName); Console.WriteLine(cstrnt.GetType()); } } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
