次の方法で共有


ColumnAttribute.IsPrimaryKey プロパティ

定義

このクラス メンバーが、テーブルの主キーの一部または全体である列を表すかどうかを示す値を取得または設定します。

public:
 property bool IsPrimaryKey { bool get(); void set(bool value); };
public bool IsPrimaryKey { get; set; }
member this.IsPrimaryKey : bool with get, set
Public Property IsPrimaryKey As Boolean

プロパティ値

既定値 = false

[Column(Storage="_ProductID", AutoSync=AutoSync.OnInsert, DbType="Int NOT NULL IDENTITY", IsPrimaryKey=true, IsDbGenerated=true)]
public int ProductID
{
    get
    {
        return this._ProductID;
    }
    set
    {
        if ((this._ProductID != value))
        {
            this.OnProductIDChanging(value);
            this.SendPropertyChanging();
            this._ProductID = value;
            this.SendPropertyChanged("ProductID");
            this.OnProductIDChanged();
        }
    }
}
<Column(Storage:="_ProductID", DbType:="Int NOT NULL", IsPrimaryKey:=true, IsDbGenerated:=true)>  _
Public Property ProductID() As Integer
    Get
        Return Me._ProductID
    End Get
    Set
        If ((Me._ProductID = value)  _
                    = false) Then
            If Me._Product.HasLoadedOrAssignedValue Then
                Throw New System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException
            End If
            Me.OnProductIDChanging(value)
            Me.SendPropertyChanging
            Me._ProductID = value
            Me.SendPropertyChanged("ProductID")
            Me.OnProductIDChanged
        End If
    End Set
End Property

注釈

エンティティ クラスを想定するには、この属性を持つメンバーを少なくとも 1 つ指定する必要があります。また、対応するテーブルまたはビューの主キーまたは一意キーにマップする必要があります。 この操作を行わないとLINQ to SQL、データベースに変更を送信するための読み取り専用としてクラスのインスタンスを考慮するように求められます。

このプロパティを使用してクラスの複数のメンバーを指定した場合、キーは関連付けられた列の複合と言われます。

Note

LINQ to SQL では、計算列は主キーとしてサポートされません。

適用対象