This repository was archived by the owner on Apr 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBaseEntityRepository.cs
197 lines (154 loc) · 6.29 KB
/
BaseEntityRepository.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
using System.Collections;
using Microsoft.EntityFrameworkCore.ChangeTracking;
using Microsoft.EntityFrameworkCore.ChangeTracking.Internal;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Monstarlab.EntityFramework.Extension.Utils;
namespace Monstarlab.EntityFramework.Extension.Repositories;
public abstract class BaseEntityRepository<TContext, TEntity, TId> : IBaseEntityRepository<TEntity, TId>
where TEntity : EntityBase<TId>
where TContext : DbContext
{
protected TContext Context { get; }
public BaseEntityRepository(TContext context)
{
Context = context ?? throw new ArgumentNullException(nameof(context));
}
public virtual Task<TEntity> GetAsync(TId id) => BaseIncludes().FirstOrDefaultAsync(entity => entity.Id.Equals(id));
public virtual async Task<TEntity> AddAsync(TEntity entity)
{
if (entity == null)
throw new ArgumentNullException(nameof(entity));
UpdateSubEntities(Context.Entry(entity), new HashSet<object>(), true);
var addedEntity = await Context.Set<TEntity>().AddAsync(entity);
return addedEntity.Entity;
}
public virtual async Task<TEntity> UpdateAsync(TEntity entity)
{
if (entity == null)
throw new ArgumentNullException(nameof(entity));
var originalEntity = await GetAsync(entity.Id);
if (originalEntity == null)
throw new ArgumentException($"No entity found with the id {entity.Id}");
originalEntity.Updated = DateTime.UtcNow;
foreach (var prop in originalEntity.GetType().GetProperties())
{
if (prop.CanWrite)
{
var initialValue = prop.GetValue(originalEntity);
var potentialNewValue = prop.GetValue(entity);
if (potentialNewValue != null && potentialNewValue != initialValue && !prop.IsReadOnly())
prop.SetValue(originalEntity, potentialNewValue);
}
}
var entry = Context.Entry(originalEntity);
UpdateSubEntities(entry, new HashSet<object>());
var updatedEntity = Context.Set<TEntity>().Update(originalEntity);
return await GetAsync(updatedEntity.Entity.Id);
}
private void UpdateSubEntities(EntityEntry entry, ISet<object> visited, bool updateSelf = false)
{
if (visited.Contains(entry.Entity))
return;
visited.Add(entry.Entity);
if (updateSelf && entry.Entity.GetType().IsAssignableToGenericType(typeof(EntityBase<>)))
{
entry.DetectChanges();
if (entry.State is EntityState.Detached or EntityState.Added)
{
entry.State = EntityState.Added;
var now = DateTime.UtcNow;
entry.Property(nameof(EntityBase<object>.Created)).CurrentValue = now;
entry.Property(nameof(EntityBase<object>.Updated)).CurrentValue = now;
}
else if (entry.State == EntityState.Modified)
{
entry.Property(nameof(EntityBase<object>.Updated)).CurrentValue = DateTime.UtcNow;
}
}
foreach (var subEntry in entry.Navigations)
{
if (subEntry is CollectionEntry {CurrentValue: { }} entryItems)
{
foreach (var subEntryItem in entryItems.CurrentValue)
{
var subEntryItemEntry = Context.Entry(subEntryItem);
UpdateSubEntities(subEntryItemEntry, visited, true);
}
}
else if (subEntry is ReferenceEntry {TargetEntry: {}} entryItem)
{
UpdateSubEntities(entryItem.TargetEntry, visited, true);
}
}
}
public virtual Task<bool> DeleteAsync(TEntity entity)
{
if (entity == null)
throw new ArgumentNullException(nameof(entity));
Context.Set<TEntity>().Remove(entity);
return Task.FromResult(true);
}
public virtual async Task<bool> DeleteAsync(TId id)
{
if (id.Equals(default(TId)))
throw new ArgumentException($"{nameof(id)} was not set", nameof(id));
var entity = await GetAsync(id);
if (entity == null)
return false;
return await DeleteAsync(entity);
}
protected IQueryable<T> Paginate<T>(IQueryable<T> query, [Range(1, int.MaxValue)] int page, [Range(1, int.MaxValue)] int pageSize)
{
if (page < 1)
throw new ArgumentException($"{nameof(page)} was below 1. Received: {page}", nameof(page));
if (pageSize < 1)
throw new ArgumentException($"{nameof(pageSize)} was below 1. Received: {pageSize}", nameof(pageSize));
var q = query;
// Pagination only skip if above page 1
if (page > 1)
q = q.Skip((page - 1) * pageSize);
return q.Take(pageSize);
}
protected IQueryable<TEntity> GetQueryable(
Expression<Func<TEntity, bool>>[] where = null,
Expression<Func<TEntity, object>> orderByExpression = null,
OrderBy orderBy = OrderBy.Ascending)
{
var query = BaseIncludes();
if (where != null && where.Any())
{
foreach(var w in where)
{
query = query.Where(w);
}
}
if (orderByExpression != null)
{
query = orderBy == OrderBy.Ascending
? query.OrderBy(orderByExpression)
: query.OrderByDescending(orderByExpression);
}
return query;
}
protected async Task<ListWrapper<T>> GetListAsync<T>(IQueryable<T> query, int page, int pageSize)
{
var totalCount = await query.CountAsync();
var paginatedQuery = Paginate(query, page, pageSize);
var data = await paginatedQuery.ToListAsync();
return new ListWrapper<T>
{
Data = data,
Meta = new MetaData
{
CurrentPage = page,
PerPage = pageSize,
RecordsInDataset = data.Count,
Total = totalCount
}
};
}
/// <summary>
/// Override this function to automatically include references in the result
/// </summary>
protected virtual IQueryable<TEntity> BaseIncludes() => Context.Set<TEntity>();
}