Condividi tramite


Metodo RelatedEnd.IRelatedEnd.Attach (Object)

[Questa pagina è specifica della versione 6 di Entity Framework. La versione più recente è disponibile come pacchetto NuGet per "Entity Framework". Per ulteriori informazioni su Entity Framework, vedere la pagina msdn.com/data/ef.]

Collega un'entità all'entità finale correlata. Se l'entità finale correlata è già stata riempita totalmente o parzialmente, le entità esistenti vengono unite all'entità specificata. L'entità specificata non viene considerata come il set completo di entità correlate. Il proprietario e tutte le entità passate devono trovarsi nello stato Unchanged o Modified. Gli elementi eliminati sono consentiti solo quando è in corso la registrazione dell'istanza della relazione da parte del gestore degli stati.

Spazio dei nomi:  System.Data.Entity.Core.Objects.DataClasses
Assembly:  EntityFramework (in EntityFramework.dll)

Sintassi

'Dichiarazione
<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")> _
Private Sub Attach ( _
    entity As Object _
) Implements IRelatedEnd.Attach
'Utilizzo
Dim instance As RelatedEnd 
Dim entity As Object 

CType(instance, IRelatedEnd).Attach(entity)
[SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
void IRelatedEnd.Attach(
    Object entity
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
private:
virtual void Attach(
    Object^ entity
) sealed = IRelatedEnd::Attach
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private abstract Attach : 
        entity:Object -> unit 
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private override Attach : 
        entity:Object -> unit
JScript supports the use of explicit interface implementations, but not the declarations of new ones.

Parametri

  • entity
    Tipo: System.Object
    Entità da collegare all'entità correlata

Implements

IRelatedEnd.Attach(Object)

Eccezioni

Eccezione Condizione
ArgumentNullException

Generata quando entity è Null.

InvalidOperationException

Generata quando l'entità non può essere correlata attraverso l'entità finale della relazione corrente.

Vedere anche

Riferimento

RelatedEnd Classe

Overload Attach

Spazio dei nomi System.Data.Entity.Core.Objects.DataClasses