DataColumn.Unique Propriedade

Definição

Obtém ou define um valor que indica se os valores em cada linha da coluna devem ser exclusivos.

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

Valor da propriedade

true se o valor deve ser exclusivo; caso contrário, false. O padrão é false.

Atributos

Exceções

A coluna é uma coluna calculada.

Exemplos

O exemplo a seguir cria novo DataColumn, define suas propriedades e o adiciona à coleção de colunas de uma tabela.

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

Comentários

Assim que essa propriedade for alterada de false para true, uma restrição exclusiva será criada nesta coluna para garantir que os valores sejam exclusivos.

Aplica-se a

Confira também