RelatedEnd.IRelatedEnd.Add-Methode (IEntityWithRelationships)
[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]
Fügt dem verknüpften Ende eine Entität hinzu. Diese Methode funktioniert genau auf die gleiche Weise wie Add(object). Es wird aus Gründen der Abwärtskompatibilität mit früheren Versionen von IRelatedEnd verwaltet.
Namespace: System.Data.Entity.Core.Objects.DataClasses
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")> _
Private Sub Add ( _
entity As IEntityWithRelationships _
) Implements IRelatedEnd.Add
'Usage
Dim instance As RelatedEnd
Dim entity As IEntityWithRelationships
CType(instance, IRelatedEnd).Add(entity)
[SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
void IRelatedEnd.Add(
IEntityWithRelationships entity
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
private:
virtual void Add(
IEntityWithRelationships^ entity
) sealed = IRelatedEnd::Add
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private abstract Add :
entity:IEntityWithRelationships -> unit
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private override Add :
entity:IEntityWithRelationships -> unit
JScript supports the use of explicit interface implementations, but not the declarations of new ones.
Parameter
- entity
Typ: System.Data.Entity.Core.Objects.DataClasses.IEntityWithRelationships
Entitätsinstanz, die dem verknüpften Ende hinzugefügt werden soll.
Implements
IRelatedEnd.Add(IEntityWithRelationships)