UniqueConstraint Constructor (DataColumn)
.NET Framework 4
Initializes a new instance of the UniqueConstraint class with the specified DataColumn.
Assembly: System.Data (in System.Data.dll)
Parameters
- column
- Type: System.Data.DataColumn
The DataColumn to constrain.
The following example creates a new UniqueConstraint and assigns it to the ParentKeyConstraint property of a DataRelation.
Private Sub CreateUniqueConstraint(ByVal dataSetSuppliers As DataSet) Dim uniqueConstraint As UniqueConstraint ' Get the DataColumn of a table in a DataSet. Dim dataColumn As DataColumn dataColumn = dataSetSuppliers.Tables("Suppliers").Columns("SupplierID") ' Create the constraint. uniqueConstraint = New UniqueConstraint("supplierIdConstraint", dataColumn) ' Add the constraint to the ConstraintCollection of the DataTable. dataSetSuppliers.Tables("Suppliers").Constraints.Add(uniqueConstraint) End Sub
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.