DataColumn.Unique Özellik

Tanım

Sütunun her satırındaki değerlerin benzersiz olması gerekip gerekmediğini belirten bir değer alır veya ayarlar.

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

Özellik Değeri

true değerin benzersiz olması gerekiyorsa; aksi takdirde , false. Varsayılan değer: false.

Öznitelikler

Özel durumlar

Sütun, hesaplanan bir sütundur.

Örnekler

Aşağıdaki örnek yeni DataColumnoluşturur, özelliklerini ayarlar ve bir tablonun sütun koleksiyonuna ekler.

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

Açıklamalar

Bu özellik false olan true olarak değiştirildiğinde, değerlerin benzersiz olduğundan emin olmak için bu sütunda benzersiz bir kısıtlama oluşturulur.

Şunlara uygulanır

Ayrıca bkz.