DataColumn.Unique プロパティ

定義

列の各行の値が一意である必要があるかどうかを示す値を取得または設定します。

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

プロパティ値

値が一意である必要がある場合は true。それ以外の場合は false。 既定値は、false です。

属性

例外

この列は計算列です。

次の例では、新しい DataColumnを作成し、そのプロパティを設定し、テーブルの列コレクションに追加します。

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

注釈

このプロパティが false から true に変更されるとすぐに、値が一意であることを確認するために、この列に一意の制約が作成されます。

適用対象

こちらもご覧ください