-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathUnitOfWork.cs
39 lines (34 loc) · 1 KB
/
UnitOfWork.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System.Data.Entity;
using System.Data.Entity.Validation;
using System.Diagnostics;
namespace DataAccess.Framework
{
public class UnitOfWork : IUnitOfWork
{
private readonly IRepositoryFactory _factory;
private readonly DbContext _context;
public UnitOfWork(IRepositoryFactory factory, DbContext dbContext)
{
_factory = factory;
_context = dbContext;
}
public IRepository<TEntity> BuildRepository<TEntity>() where TEntity : class
{
return _factory.BuildRepository<TEntity>();
}
public void Save()
{
try
{
_context.SaveChanges();
}
catch (DbEntityValidationException entityValidation)
{
foreach (var prop in entityValidation.EntityValidationErrors)
{
Debug.WriteLine(prop);
}
}
}
}
}