-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathRepository.cs
217 lines (182 loc) · 7.48 KB
/
Repository.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
namespace Masa.Contrib.Ddd.Domain.Repository.EF;
public class Repository<TDbContext, TEntity> :
BaseRepository<TEntity>
where TEntity : class, IEntity
where TDbContext : DbContext
{
protected readonly TDbContext Context;
public Repository(TDbContext context, IUnitOfWork unitOfWork)
{
Context = context;
UnitOfWork = unitOfWork;
}
public override bool TransactionHasBegun
=> Context.Database.CurrentTransaction != null;
public override DbTransaction Transaction
{
get
{
if (!UseTransaction)
throw new NotSupportedException(nameof(Transaction));
if (TransactionHasBegun)
return Context.Database.CurrentTransaction!.GetDbTransaction();
return Context.Database.BeginTransaction().GetDbTransaction();
}
}
public override bool UseTransaction
{
get => UnitOfWork.UseTransaction;
set => UnitOfWork.UseTransaction = value;
}
public override IUnitOfWork UnitOfWork { get; }
public override EntityState EntityState
{
get => UnitOfWork.EntityState;
set
{
UnitOfWork.EntityState = value;
if (value == EntityState.Changed)
CheckAndOpenTransaction();
}
}
public override async ValueTask<TEntity> AddAsync(
TEntity entity,
CancellationToken cancellationToken = default)
{
var response = (await Context.AddAsync(entity, cancellationToken).AsTask()).Entity;
EntityState = EntityState.Changed;
return response;
}
public override async Task AddRangeAsync(
IEnumerable<TEntity> entities,
CancellationToken cancellationToken = default)
{
await Context.AddRangeAsync(entities, cancellationToken);
EntityState = EntityState.Changed;
}
public override Task CommitAsync(CancellationToken cancellationToken = default)
=> UnitOfWork.CommitAsync(cancellationToken);
public override async ValueTask DisposeAsync() => await Context.DisposeAsync();
public override void Dispose() => Context.Dispose();
public override Task<TEntity?> FindAsync(
IEnumerable<KeyValuePair<string, object>> keyValues,
CancellationToken cancellationToken = default)
{
Dictionary<string, object> fields = new(keyValues);
return Context.Set<TEntity>().IgnoreQueryFilters().GetQueryable(fields).FirstOrDefaultAsync(cancellationToken);
}
public override Task<TEntity?> FindAsync(
Expression<Func<TEntity, bool>> predicate,
CancellationToken cancellationToken = default)
=> Context.Set<TEntity>().Where(predicate).FirstOrDefaultAsync(cancellationToken);
public override async Task<long> GetCountAsync(CancellationToken cancellationToken = default)
=> await Context.Set<TEntity>().LongCountAsync(cancellationToken);
public override Task<long> GetCountAsync(
Expression<Func<TEntity, bool>> predicate,
CancellationToken cancellationToken = default)
=> Context.Set<TEntity>().LongCountAsync(predicate, cancellationToken);
public override async Task<IEnumerable<TEntity>> GetListAsync(CancellationToken cancellationToken = default)
=> await Context.Set<TEntity>().ToListAsync(cancellationToken);
public override async Task<IEnumerable<TEntity>> GetListAsync(
Expression<Func<TEntity, bool>> predicate,
CancellationToken cancellationToken = default)
=> await Context.Set<TEntity>().Where(predicate).ToListAsync(cancellationToken);
/// <summary>
///
/// </summary>
/// <param name="skip"></param>
/// <param name="take"></param>
/// <param name="sorting">asc or desc, default asc</param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public override Task<List<TEntity>> GetPaginatedListAsync(
int skip,
int take,
Dictionary<string, bool>? sorting,
CancellationToken cancellationToken = default)
{
sorting ??= new Dictionary<string, bool>();
return Context.Set<TEntity>().OrderBy(sorting).Skip(skip).Take(take).ToListAsync(cancellationToken);
}
/// <summary>
///
/// </summary>
/// <param name="predicate">condition</param>
/// <param name="skip"></param>
/// <param name="take"></param>
/// <param name="sorting">asc or desc, default asc</param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public override Task<List<TEntity>> GetPaginatedListAsync(
Expression<Func<TEntity, bool>> predicate,
int skip,
int take,
Dictionary<string, bool>? sorting,
CancellationToken cancellationToken = default)
{
sorting ??= new Dictionary<string, bool>();
return Context.Set<TEntity>().Where(predicate).OrderBy(sorting).Skip(skip).Take(take).ToListAsync(cancellationToken);
}
public override Task<TEntity> RemoveAsync(TEntity entity, CancellationToken cancellationToken = default)
{
Context.Set<TEntity>().Remove(entity);
EntityState = EntityState.Changed;
return Task.FromResult(entity);
}
public override async Task RemoveAsync(Expression<Func<TEntity, bool>> predicate, CancellationToken cancellationToken = default)
{
var entities = await GetListAsync(predicate, cancellationToken);
EntityState = EntityState.Changed;
Context.Set<TEntity>().RemoveRange(entities);
}
public override Task RemoveRangeAsync(IEnumerable<TEntity> entities, CancellationToken cancellationToken = default)
{
Context.Set<TEntity>().RemoveRange(entities);
EntityState = EntityState.Changed;
return Task.CompletedTask;
}
public override Task RollbackAsync(CancellationToken cancellationToken = default)
=> UnitOfWork.RollbackAsync(cancellationToken);
public override async Task SaveChangesAsync(CancellationToken cancellationToken = default)
{
await UnitOfWork.SaveChangesAsync(cancellationToken);
}
public override Task<TEntity> UpdateAsync(TEntity entity, CancellationToken cancellationToken = default)
{
Context.Set<TEntity>().Update(entity);
EntityState = EntityState.Changed;
return Task.FromResult(entity);
}
public override Task UpdateRangeAsync(IEnumerable<TEntity> entities, CancellationToken cancellationToken = default)
{
Context.Set<TEntity>().UpdateRange(entities);
EntityState = EntityState.Changed;
return Task.CompletedTask;
}
/// <summary>
/// When additions, deletions and changes are made through the Repository and the transaction is currently allowed and the transaction is not opened, the transaction is started
/// </summary>
private void CheckAndOpenTransaction()
{
if (!UnitOfWork.UseTransaction)
return;
if (!UnitOfWork.TransactionHasBegun)
{
_ = UnitOfWork.Transaction; // Open the transaction
}
CommitState = CommitState.UnCommited;
}
}
public class Repository<TDbContext, TEntity, TKey> :
Repository<TDbContext, TEntity>,
IRepository<TEntity, TKey>, IUnitOfWork
where TEntity : class, IEntity<TKey>
where TDbContext : DbContext
where TKey : IComparable
{
public Repository(TDbContext context, IUnitOfWork unitOfWork) : base(context, unitOfWork)
{
}
public Task<TEntity?> FindAsync(TKey id)
=> Context.Set<TEntity>().FirstOrDefaultAsync(entity => entity.Id.Equals(id));
}