Metodo DbSet.Attach
[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.]
Associa l'entità specificata al contesto sottostante il set, ovvero l'entità viene posizionata nel contesto nello stato Unchanged, come se fosse stata letta dal database.
Spazio dei nomi: System.Data.Entity
Assembly: EntityFramework (in EntityFramework.dll)
Sintassi
'Dichiarazione
Public Overridable Function Attach ( _
entity As Object _
) As Object
'Utilizzo
Dim instance As DbSet
Dim entity As Object
Dim returnValue As Object
returnValue = instance.Attach(entity)
public virtual Object Attach(
Object entity
)
public:
virtual Object^ Attach(
Object^ entity
)
abstract Attach :
entity:Object -> Object
override Attach :
entity:Object -> Object
public function Attach(
entity : Object
) : Object
Parametri
- entity
Tipo: System.Object
Entità da associare.
Valore restituito
Tipo: System.Object
Entità.
Note
Il metodo Attach viene utilizzato per ripopolare un contesto con un'entità nota già esistente nel database. SaveChanges non tenterà pertanto di inserire un'entità associata nel database perché si presuppone che sia già presente. Lo stato delle entità già presenti nel contesto in un altro stato verrà impostato su Unchanged. Attach non esegue alcuna operazione se l'entità è già presente nel contesto nello stato Unchanged.