DataColumn.Unique Proprietà

Definizione

Ottiene o imposta un valore che indica se i valori di ciascuna riga della colonna devono essere univoci.

public:
 property bool Unique { bool get(); void set(bool value); };
public bool Unique { get; set; }
[System.Data.DataSysDescription("DataColumnUniqueDescr")]
public bool Unique { get; set; }
member this.Unique : bool with get, set
[<System.Data.DataSysDescription("DataColumnUniqueDescr")>]
member this.Unique : bool with get, set
Public Property Unique As Boolean

Valore della proprietà

true se il valore deve essere univoco; in caso contrario, false. Il valore predefinito è false.

Attributi

Eccezioni

La colonna è una colonna calcolata.

Esempio

L'esempio seguente crea un nuovo DataColumnoggetto , ne imposta le proprietà e lo aggiunge all'insieme columns di una tabella.

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;
}
Private Sub AddColumn(table As DataTable)
    ' Add a DataColumn to the collection and set its properties.
    ' The constructor sets the ColumnName of the column.
    Dim column As New DataColumn("Total")
    column.DataType = System.Type.GetType("System.Decimal")
    column.ReadOnly = True
    column.Expression = "UnitPrice * Quantity"
    column.Unique = False
End Sub

Commenti

Non appena questa proprietà viene modificata da false a true, verrà creato un vincolo univoco in questa colonna per assicurarsi che i valori siano univoci.

Si applica a

Vedi anche