RelatedEnd.IRelatedEnd.Remove-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.]
Entfernt eine Entität aus dem verknüpften Ende. Wenn der Besitzer an einen Cache angefügt ist, wird die Beziehung zum Löschen gekennzeichnet, und wenn die Beziehung eine Zusammensetzung ist, wird die Entität ebenfalls für die Löschung markiert.
Namespace: System.Data.Entity.Core.Objects.DataClasses
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")> _
Private Function Remove ( _
entity As Object _
) As Boolean Implements IRelatedEnd.Remove
'Usage
Dim instance As RelatedEnd
Dim entity As Object
Dim returnValue As Boolean
returnValue = CType(instance, IRelatedEnd).Remove(entity)
[SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
bool IRelatedEnd.Remove(
Object entity
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
private:
virtual bool Remove(
Object^ entity
) sealed = IRelatedEnd::Remove
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private abstract Remove :
entity:Object -> bool
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private override Remove :
entity:Object -> bool
JScript supports the use of explicit interface implementations, but not the declarations of new ones.
Parameter
- entity
Typ: System.Object
Entitätsinstanz, die aus dem verknüpften Ende entfernt werden soll.
Rückgabewert
Typ: System.Boolean
Gibt true zurück, wenn die Entität erfolgreich entfernt wurde, gibt false zurück, wenn die Entität nicht Teil des RelatedEnd war.