Entity Framework
Le transazioni
Ricerca…
Database.BeginTransaction ()
È possibile eseguire più operazioni su una singola transazione in modo da poter eseguire il rollback delle modifiche se una qualsiasi operazione non riesce.
using (var context = new PlanetContext())
{
using (var transaction = context.Database.BeginTransaction())
{
try
{
//Lets assume this works
var jupiter = new Planet { Name = "Jupiter" };
context.Planets.Add(jupiter);
context.SaveChanges();
//And then this will throw an exception
var neptune = new Planet { Name = "Neptune" };
context.Planets.Add(neptune);
context.SaveChanges();
//Without this line, no changes will get applied to the database
transaction.Commit();
}
catch (Exception ex)
{
//There is no need to call transaction.Rollback() here as the transaction object
//will go out of scope and disposing will roll back automatically
}
}
}
Si noti che potrebbe essere una convenzione per gli sviluppatori chiamare transaction.Rollback()
esplicito transaction.Rollback()
, perché rende il codice più autoesplicativo. Inoltre, potrebbero esistere provider di query meno noti per Entity Framework che non implementano correttamente Dipsose
, il che richiederebbe anche una chiamata transaction.Rollback()
esplicita.
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow