Skip to content

Commit 2c66f05

Browse files
committed
Fix IRepository
1 parent 1e212d6 commit 2c66f05

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/KSFramework/GenericRepository/IRepository.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ PaginatedList<TEntity> GetPaged(
2727
int pageSize,
2828
Expression<Func<TEntity, bool>>? where = null,
2929
string? orderBy = "",
30-
bool desc = false);
30+
bool desc = false,
31+
CancellationToken cancellationToken = default);
3132
ValueTask<TEntity?> GetByIdAsync(object id,
3233
CancellationToken cancellationToken = default);
3334
void Remove(TEntity entity);

0 commit comments

Comments
 (0)