Skip to content

Commit 0b85150

Browse files
authored
Merge pull request #48 from A-Programmer/feature/Add_BlogApp_to_Solution
Fix IRepository
2 parents b7abd78 + 2c66f05 commit 0b85150

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)