We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c66f05 commit 351830dCopy full SHA for 351830d
src/KSFramework/GenericRepository/IRepository.cs
@@ -21,14 +21,14 @@ Task<PaginatedList<TEntity>> GetPagedAsync(
21
int pageSize,
22
Expression<Func<TEntity, bool>>? where = null,
23
string? orderBy = "",
24
- bool desc = false);
+ bool desc = false,
25
+ CancellationToken cancellationToken = default);
26
PaginatedList<TEntity> GetPaged(
27
int pageIndex,
28
29
30
- bool desc = false,
31
- CancellationToken cancellationToken = default);
+ bool desc = false);
32
ValueTask<TEntity?> GetByIdAsync(object id,
33
CancellationToken cancellationToken = default);
34
void Remove(TEntity entity);
0 commit comments