Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
IEvangelist committed Jun 30, 2024
1 parent 7033dd0 commit ae6c919
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public async Task BasicPageAsync()
{
double totalCharge = 0;
OffsetByPageNumberSpecification<Person> specification = new(1, 25);
IPageQueryResult<Person> page = await _repository.QueryAsync(specification);
IPageQueryResult<Person> page = await repository.QueryAsync(specification);
while (page.HasNextPage is not null && page.HasNextPage.Value)
{
foreach (Person person in page.Items)
Expand Down

0 comments on commit ae6c919

Please sign in to comment.