RelatedEnd.IRelatedEnd.Add-Methode (Object)
[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. Wenn der Besitzer an einen Cache angefügt wird, werden alle verbundenen Enden dem Objektcache hinzugefügt, und ihre entsprechenden Beziehungen werden auch dem ObjectStateManager hinzugefügt. Das RelatedEnd der Beziehung ist ebenfalls fest.
Namespace: System.Data.Entity.Core.Objects.DataClasses
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")> _
Private Sub Add ( _
entity As Object _
) Implements IRelatedEnd.Add
'Usage
Dim instance As RelatedEnd
Dim entity As Object
CType(instance, IRelatedEnd).Add(entity)
[SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
void IRelatedEnd.Add(
Object entity
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
private:
virtual void Add(
Object^ entity
) sealed = IRelatedEnd::Add
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private abstract Add :
entity:Object -> unit
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private override Add :
entity:Object -> unit
JScript supports the use of explicit interface implementations, but not the declarations of new ones.
Parameter
- entity
Typ: System.Object
Entitätsinstanz, die dem verknüpften Ende hinzugefügt werden soll.