-
Notifications
You must be signed in to change notification settings - Fork 0
/
UnitOfWork.cs
49 lines (39 loc) · 969 Bytes
/
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
40
41
42
43
44
45
46
47
48
49
using System;
using System.Collections.Generic;
namespace Sayda.Core.UnitOfWork
{
public class UnitOfWork : IUnitOfWork
{
IDbContext _context;
private Dictionary<string, IRepository> _repositories;
public event EventHandler OnCommit;
public event EventHandler OnError;
private Guid _id;
public UnitOfWork (IDbContext context)
{
_context = context;
_repositories = new Dictionary<string, IRepository>();
_id = Guid.NewGuid();
}
public Guid Id => _id;
public void Register (IRepository repository) => _repositories.TryAdd(repository.GetType().ToString(), repository);
public ISession GetSession () => _context.GetSession();
public void Commit ()
{
try
{
//add strategies
_context.SaveChanges();
}
catch (Exception)
{
//add failure strategies
throw;
}
}
//public IQueryable<T> GetCollection<T> () where T : class
//{
// return _context.GetSession().GetCollection<T>();
//}
}
}