Evento ObjectContext.SavingChanges
[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.]
Si verifica quando le modifiche vengono salvate nell'origine dati.
Spazio dei nomi: System.Data.Entity.Core.Objects
Assembly: EntityFramework (in EntityFramework.dll)
Sintassi
'Dichiarazione
Public Event SavingChanges As EventHandler
'Utilizzo
Dim instance As ObjectContext
Dim handler As EventHandler
AddHandler instance.SavingChanges, handler
public event EventHandler SavingChanges
public:
event EventHandler^ SavingChanges {
void add (EventHandler^ value);
void remove (EventHandler^ value);
}
member SavingChanges : IEvent<EventHandler,
EventArgs>
JScript supports the use of events, but not the declaration of new ones.