Sign in Sign up
nuget

LinqPaginator

For queries that return a lot of data, a need emerges to consume the results in chunks rather than the entire set. Consuming all results at once can be costly in terms of network traffic thus slowing down your application. Linq Paginator allows you to run your queries and return your data in form of pages. A page contains a set number of items to return per page e.g 20. If for example you have 100 records, it will return the following object: - Page: 1, - TotalPages: 5, - ItemsPerPage: 20, - TotalItems: 100, - Items (collection of the first 20 records)

nuget View on Nuget

Activity

Latest release
5y ago
Total releases
17
Cadence
~33 days
Last 12 months
0

Details

First release
Jan 21, 2018
Releases
Version Released
1.2.7 patch
1.2.6 patch
1.2.5 patch
1.2.4 patch
1.2.3 patch
1.2.2 patch
1.2.1 patch
1.2.0 minor
1.1.0 minor
1.1.0-beta pre
1.0.6 patch
1.0.5 patch
1.0.4 patch
1.0.3 patch
1.0.2 patch
1.0.1 patch
1.0.0 initial