AssociationAttribute.OtherKey Proprietà

Definizione

Ottiene o imposta uno o più membri della classe di entità di destinazione come valori delle chiavi sull'altro lato dell'associazione.

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

Valore della proprietà

Impostazione predefinita = ID della classe correlata.

Esempio

[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

Commenti

Per più membri, usare un elenco delimitato da virgole.

La chiave non è necessaria per trovare la corrispondenza con la chiave primaria o la chiave esterna, ma si presuppone che la cardinalità dichiarata dall'utente (0-1 per EntityRef<TEntity> o 0-n per EntitySet<TEntity>) sia true.

Si applica a