I am having trouble understanding the concept of a unit of work transaction. I use code like: unit of working class:
public class UnitOfWork : IDisposable
{
private readonly DbContext _context;
private bool disposed = false;
public UnitOfWork()
{
_context = new ResultsContext();
}
public IRepository<T> GetRepository<T>() where T : class
{
return new Repository<T>(_context);
}
public virtual void Dispose(bool disposing)
{
if (!disposed)
{
if (disposing)
{
_context.Dispose();
}
}
disposed = true;
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
public Study GetStudyWithAll(string studyUid)
{
ResultsContext context = _context as ResultsContext;
return context.Studies.Where(c => c.StudyUid == studyUid)
.Include(s => s.Tasks.Select(t => t.Plugins))
.Include(s => s.Findings)
.Include(s => s.Patient).FirstOrDefault();
}
public void SaveChanges()
{
if (_context != null)
{
bool saved = false;
do
{
try
{
_context.SaveChanges();
saved = true;
}
catch (DbUpdateException ex)
{
var entry = ex.Entries.Single();
switch (entry.State)
{
case System.Data.EntityState.Added:
entry.State = System.Data.EntityState.Modified;
break;
case System.Data.EntityState.Deleted:
entry.Reload();
entry.State = System.Data.EntityState.Deleted;
break;
case System.Data.EntityState.Modified:
DbPropertyValues currentValues = entry.CurrentValues.Clone();
entry.Reload();
entry.CurrentValues.SetValues(currentValues);
break;
default:
entry.Reload();
break;
}
}
catch (System.Data.Entity.Validation.DbEntityValidationException dbEx)
{
Exception raise = dbEx;
foreach (var validationErrors in dbEx.EntityValidationErrors)
{
foreach (var validationError in validationErrors.ValidationErrors)
{
string message = string.Format("{0}:{1}",
validationErrors.Entry.Entity.ToString(),
validationError.ErrorMessage);
raise = new InvalidOperationException(message, raise);
}
}
throw raise;
}
} while (!saved);
}
}
public DbContext Context
{
get { return _context; }
}
}
How do I use this:
using (var uow = new UnitOfWork())
{
uow.SaveChanges();
}
Question: the unit of the working context is equal to the transaction, or do I need to add:
using (TransactionScope transaction = new TransactionScope())
Around him.
I know that saveChanges is wrapped in a transaction, which I donβt know: the whole context is wrapped in a transaction. I mean, can I be sure that the data that I read (did not save or update) did not change during the life of the context?
source
share