共用方式為


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

備註

假設實體類別,您必須提供至少一個具有這個屬性的成員,而且它必須對應至對應數據表或檢視表的主鍵或唯一索引鍵。 無法執行此動作,會提示 LINQ to SQL 將 類別的實例視為唯讀的,以便將變更提交至資料庫。

如果您使用這個屬性來指定類別的多個成員,索引鍵即為相關聯數據行的複合。

注意

LINQ to SQL 不支援以計算資料行作為主索引鍵。

適用於