DataColumn.Unique Property
Gets or sets a value that indicates whether the values in each row of the column must be unique.
Assembly: System.Data (in System.Data.dll)
Property Value
Type: System.Booleantrue if the value must be unique; otherwise, false. The default is false.
| Exception | Condition |
|---|---|
| ArgumentException | The column is a calculated column. |
The following example creates new DataColumn, sets its properties, and adds it to a table's columns collection.
private void AddColumn(DataTable table) { // Add a DataColumn to the collection and set its properties. // The constructor sets the ColumnName of the column. DataColumn column = new DataColumn("Total"); column.DataType = System.Type.GetType("System.Decimal"); column.ReadOnly = true; column.Expression = "UnitPrice * Quantity"; column.Unique = false; }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.