efcore pagination automation for c#
- Extremly easy to use
- Light weight
- Unify and simplfy Apis
- Multi-platform
- Pure c#
- Opensource
- MIT License
Using package manager
Install-Package PaginateMe -Version 1.0.1Using DOTNET CLI
dotnet add package PaginateMe --version 1.0.1Using PackageReference
<PackageReference Include="PaginateMe" Version="1.0.1" />use it on any Datbase set
var pagedModel = await _dbContext.Set
.OrderByDescending(b => b.Id)
.PaginateAsync<IBranch>(page, limit);Where page is the page number, limit is the page size and Set is the model you are working on