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 pathIEntityRepository.cs
84 lines (77 loc) · 3.88 KB
/
IEntityRepository.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
namespace Monstarlab.EntityFramework.Extension.Repositories;
public interface IEntityRepository<TEntity, TId> : IBaseEntityRepository<TEntity, TId>
where TEntity : EntityBase<TId>
{
/// <summary>
/// Get the entity with the given <paramref name="id"/>.
/// </summary>
/// <param name="id">The ID of the entity to fetch.</param>
Task<TEntity> GetAsync(TId id);
/// <summary>
/// Get the entity, filtered by <paramref name="where"/>
/// </summary>
/// <param name="where">The filter expression</param>
Task<TEntity?> GetAsync(Expression<Func<TEntity, bool>> where);
/// <summary>
/// Get multiple entities paginated.
/// </summary>
/// <param name="page">Which page to fetch (1 and above).</param>
/// <param name="pageSize">The size of each page (1 and above).</param>
/// <param name="where">The filter expressions.</param>
/// <param name="orderByExpression">The expression to order by.</param>
/// <param name="orderBy">To order by ascending or descending.</param>
/// <exception cref="ArgumentException"></exception>
Task<ListWrapper<TEntity>> GetListAsync(
[Range(1, int.MaxValue)] int page,
[Range(1, int.MaxValue)] int pageSize,
Expression<Func<TEntity, bool>>[] where = null,
Expression<Func<TEntity, object>> orderByExpression = null,
OrderBy orderBy = OrderBy.Ascending);
/// <summary>
/// Get multiple entities.
/// </summary>
/// <param name="where">The filter expressions.</param>
/// <param name="orderByExpression">The expression to order by.</param>
/// <param name="orderBy">To order by ascending or descending.</param>
Task<IEnumerable<TEntity>> GetListAsync(
Expression<Func<TEntity, bool>>[] where = null,
Expression<Func<TEntity, object>> orderByExpression = null,
OrderBy orderBy = OrderBy.Ascending);
/// <summary>
/// Get multiple entities paginated and translated.
/// </summary>
/// <typeparam name="TResult">The type to return.</typeparam>
/// <param name="select">The select statement to get <typeparamref name="TResult"/>.</param>
/// <param name="page">Which page to fetch (1 and above).</param>
/// <param name="pageSize">The size of each page (1 and above).</param>
/// <param name="where">The filter expressions.</param>
/// <param name="orderByExpression">The expression to order by.</param>
/// <param name="orderBy">To order by ascending or descending.</param>
/// <exception cref="ArgumentException"></exception>
Task<ListWrapper<TResult>> GetListWithSelectAsync<TResult>(
Expression<Func<TEntity, TResult>> select,
[Range(1, int.MaxValue)] int page,
[Range(1, int.MaxValue)] int pageSize,
Expression<Func<TEntity, bool>>[] where = null,
Expression<Func<TEntity, object>> orderByExpression = null,
OrderBy orderBy = OrderBy.Ascending);
/// <summary>
/// Get multiple entities translated.
/// </summary>
/// <typeparam name="TResult">The type to return.</typeparam>
/// <param name="select">The select statement to get <typeparamref name="TResult"/>.</param>
/// <param name="where">The filter expressions.</param>
/// <param name="orderByExpression">The expression to order by.</param>
/// <param name="orderBy">To order by ascending or descending.</param>
Task<IEnumerable<TResult>> GetListWithSelectAsync<TResult>(
Expression<Func<TEntity, TResult>> select,
Expression<Func<TEntity, bool>>[] where = null,
Expression<Func<TEntity, object>> orderByExpression = null,
OrderBy orderBy = OrderBy.Ascending);
/// <summary>
/// Update the given <paramref name="entity"/> with the information set.
/// </summary>
/// <param name="entity">The entity to update.</param>
/// <exception cref="ArgumentNullException"></exception>
Task<TEntity> UpdateAsync(TEntity entity);
}