Skip to content

Commit

Permalink
Updated SetPaginInfo documentation
Browse files Browse the repository at this point in the history
Fixed #6
  • Loading branch information
MscrmTools authored Jan 7, 2023
1 parent 3cfb60c commit df5abb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ var earlyBoundQuery = new Query<Account>()
.Top(10)
.Distinct()
.NoLock()
.SetPaging(1, 100, true);
.SetPagingInfo(1, 100, true);
var lateBoundQuery = new Query("account")
.Top(10)
.Distinct()
.NoLock()
.SetPaging(1, 100, true);
.SetPagingInfo(1, 100, true);
```

Expand Down

0 comments on commit df5abb6

Please sign in to comment.