-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathRepository.cs
227 lines (195 loc) · 9.68 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
218
219
220
221
222
223
224
225
226
227
// Copyright (c) MASA Stack All rights reserved.
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
namespace Masa.Contrib.Ddd.Domain.Repository.EF;
public class Repository<TDbContext, TEntity> :
BaseRepository<TEntity>
where TEntity : class, IEntity
where TDbContext : DbContext
{
protected TDbContext Context { get; }
public Repository(TDbContext context, IUnitOfWork unitOfWork) : base(unitOfWork.ServiceProvider)
{
Context = context;
UnitOfWork = unitOfWork;
}
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<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(string sortField, bool isDescending = true,
CancellationToken cancellationToken = default)
=> await Context.Set<TEntity>().OrderBy(sortField, isDescending).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);
public override async Task<IEnumerable<TEntity>> GetListAsync(
Expression<Func<TEntity, bool>> predicate,
string sortField,
bool isDescending = true,
CancellationToken cancellationToken = default)
=> await Context.Set<TEntity>().OrderBy(sortField, isDescending).Where(predicate).ToListAsync(cancellationToken);
/// <summary>
/// Get a paginated list after sorting according to skip and take
/// </summary>
/// <param name="skip">The number of elements to skip before returning the remaining elements</param>
/// <param name="take">The number of elements to return</param>
/// <param name="sortField">Sort field name</param>
/// <param name="isDescending">true descending order, false ascending order, default: true</param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public override Task<List<TEntity>> GetPaginatedListAsync(int skip, int take, string sortField, bool isDescending,
CancellationToken cancellationToken = default)
=> Context.Set<TEntity>().OrderBy(sortField, isDescending).Skip(skip).Take(take).ToListAsync(cancellationToken);
/// <summary>
/// Get a paginated list after sorting according to skip and take
/// </summary>
/// <param name="skip">The number of elements to skip before returning the remaining elements</param>
/// <param name="take">The number of elements to return</param>
/// <param name="sorting">Key: sort field name, Value: true descending order, false ascending order</param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public override Task<List<TEntity>> GetPaginatedListAsync(
int skip,
int take,
Dictionary<string, bool>? sorting = null,
CancellationToken cancellationToken = default)
{
sorting ??= new Dictionary<string, bool>();
return Context.Set<TEntity>().OrderBy(sorting).Skip(skip).Take(take).ToListAsync(cancellationToken);
}
/// <summary>
/// Get a paginated list after sorting by condition
/// </summary>
/// <param name="predicate"> A function to test each element for a condition</param>
/// <param name="skip">The number of elements to skip before returning the remaining elements</param>
/// <param name="take">The number of elements to return</param>
/// <param name="sortField">Sort field name</param>
/// <param name="isDescending">true descending order, false ascending order, default: true</param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public override Task<List<TEntity>> GetPaginatedListAsync(Expression<Func<TEntity, bool>> predicate, int skip, int take,
string sortField,
bool isDescending = true, CancellationToken cancellationToken = default)
=> Context.Set<TEntity>().Where(predicate).OrderBy(sortField, isDescending).Skip(skip).Take(take).ToListAsync(cancellationToken);
/// <summary>
/// Get a paginated list after sorting by condition
/// </summary>
/// <param name="predicate"> A function to test each element for a condition</param>
/// <param name="skip">The number of elements to skip before returning the remaining elements</param>
/// <param name="take">The number of elements to return</param>
/// <param name="sorting">Key: sort field name, Value: true descending order, false ascending order</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 = null,
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<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>
where TEntity : class, IEntity<TKey>
where TDbContext : DbContext
where TKey : IComparable
{
public Repository(TDbContext context, IUnitOfWork unitOfWork) : base(context, unitOfWork)
{
}
public virtual Task<TEntity?> FindAsync(TKey id, CancellationToken cancellationToken = default)
=> Context.Set<TEntity>().FirstOrDefaultAsync(entity => entity.Id.Equals(id), cancellationToken);
public virtual Task RemoveAsync(TKey id, CancellationToken cancellationToken = default)
=> base.RemoveAsync(entity => entity.Id.Equals(id), cancellationToken);
public virtual Task RemoveRangeAsync(IEnumerable<TKey> ids, CancellationToken cancellationToken = default)
=> base.RemoveAsync(entity => ids.Contains(entity.Id), cancellationToken);
}