次の方法で共有


AssociationAttribute.OtherKey プロパティ

定義

ターゲット エンティティ クラスの 1 つ以上のメンバーを、関連付けの他方の側のキー値として取得または設定します。

public:
 property System::String ^ OtherKey { System::String ^ get(); void set(System::String ^ value); };
public string OtherKey { get; set; }
member this.OtherKey : string with get, set
Public Property OtherKey As String

プロパティ値

既定値は関連クラスの ID です。

[Association(Name="FK_Products_Categories", Storage="_Products", OtherKey="CategoryID", DeleteRule="NO ACTION")]
public EntitySet<Product> Products
{
    get
    {
        return this._Products;
    }
    set
    {
        this._Products.Assign(value);
    }
}
<Association(Name:="FK_Products_Categories", Storage:="_Products", OtherKey:="CategoryID", DeleteRule:="NO ACTION")>  _
Public Property Products() As EntitySet(Of Product)
    Get
        Return Me._Products
    End Get
    Set
        Me._Products.Assign(value)
    End Set
End Property

注釈

複数のメンバーの場合は、コンマ区切りのリストを使用します。

キーは主キーまたは外部キーと一致する必要はありませんが、ユーザーが指定したカーディナリティ (の EntityRef<TEntity> 場合は 0-1、の場合は 0-n EntitySet<TEntity>) は true であると見なされます。

適用対象