string[] usersToAdd = new string[] { "asd", "asdert", "gasdff6" };
using (Entities context = new Entities())
{
foreach (string user in usersToAdd)
{
context.AddToUsers(new User { Name = user });
}
try
{
context.SaveChanges(); //Exception thrown: user 'gasdff6' already exist.
}
catch (Exception e)
{
//Roll back all changes including the two previous users.
}
A może dzieje się to automatycznie, co oznacza, że jeśli wystąpi błąd, zatwierdzenie zmian zostanie anulowane w przypadku wszystkich zmian. jest to?Jak wycofać transakcję z Entity Framework
tak, to jest poprawne –