संपादन करना

के माध्यम से साझा करें


AssociationAttribute.OtherKey Property

Definition

Gets or sets one or more members of the target entity class as key values on the other side of the association.

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

Property Value

Default = Id of the related class.

Examples

[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

Remarks

For multiple members, use a comma-separated list.

The key is not required to match the primary key or foreign key, but the user-stated cardinality (0-1 for EntityRef<TEntity> or 0-n for EntitySet<TEntity>) is assumed to be true.

Applies to