LinqPaginator 1.1.0
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,
- List (collection of the first 20 records)
See the version list below for details.
Install-Package LinqPaginator -Version 1.1.0
dotnet add package LinqPaginator --version 1.1.0
<PackageReference Include="LinqPaginator" Version="1.1.0" />
paket add LinqPaginator --version 1.1.0
Release Notes
Adds the following methods when calling pagination; to on-board earlier users, and give more flexibility.
-> .Paginate()
-> .Page()
-> .Paged()
-> .ToPages()
-> .ToPaginate()
Dependencies
-
.NETCoreApp 1.0
- Microsoft.NETCore.App (>= 1.0.5)
- Shared.Common (>= 1.1.0)
-
.NETCoreApp 1.1
- Microsoft.NETCore.App (>= 1.1.2)
- Shared.Common (>= 1.1.0)
-
.NETCoreApp 2.0
- Shared.Common (>= 1.1.0)
-
.NETCoreApp 2.1
- Shared.Common (>= 1.1.0)
-
.NETFramework 4.6
- Shared.Common (>= 1.1.0)
-
.NETFramework 4.6.1
- Shared.Common (>= 1.1.0)
-
.NETFramework 4.6.2
- Shared.Common (>= 1.1.0)
-
.NETStandard 1.5
- NETStandard.Library (>= 1.6.1)
- Shared.Common (>= 1.1.0)
-
.NETStandard 1.6
- NETStandard.Library (>= 1.6.1)
- Shared.Common (>= 1.1.0)
-
.NETStandard 2.0
- Shared.Common (>= 1.1.0)
GitHub Usage
This package is not used by any popular GitHub repositories.