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 1e212d6 commit 2c66f05Copy full SHA for 2c66f05
src/KSFramework/GenericRepository/IRepository.cs
@@ -27,7 +27,8 @@ PaginatedList<TEntity> GetPaged(
27
int pageSize,
28
Expression<Func<TEntity, bool>>? where = null,
29
string? orderBy = "",
30
- bool desc = false);
+ bool desc = false,
31
+ CancellationToken cancellationToken = default);
32
ValueTask<TEntity?> GetByIdAsync(object id,
33
CancellationToken cancellationToken = default);
34
void Remove(TEntity entity);
0 commit comments