PHPackages                             crystoline/netcorepaginator - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. crystoline/netcorepaginator

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

crystoline/netcorepaginator
===========================

Pagination library for Asp.NetCoreMvc

v1.0.1(7y ago)19C#

Since Oct 4Pushed 6y ago1 watchersCompare

[ Source](https://github.com/crystoline/netcorepaginator)[ Packagist](https://packagist.org/packages/crystoline/netcorepaginator)[ RSS](/packages/crystoline-netcorepaginator/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (3)Used By (0)

netcorepaginator
================

[](#netcorepaginator)

Pagination library for Asp.NetCoreMvc

\#Installation `composer require crystoline/netcorepaginator`or `https://github.com/crystoline/netcorepaginator.git`\##Usage/Examples

**In Controller**

```
 public class InvoiceController : BusinessBase
{
    public IPaginate MyModelPaginateService { get; }
    private readonly IUrlHelper _urlHelper;

    public InvoiceController(ApplicationDbContext context, IUrlHelper urlHelper, IPaginate myModelPaginateService) :
    {
        this.MyModelPaginateService = myModelPaginateService;
        this._urlHelper = urlHelper;
    }

    public IActionResult All([FromRoute ]Guid Id, [FromQuery] PagingParams pagingParams)
	{
        IQueryable data = _context.MyModels.Where(i => i.Id == Id);
        var pagedList = new PagedList(data, pagingParams);
        var pages = new PaginateResponse(pagedList, "All", _urlHelper);
        return Ok(pages);
    }
}

```

**Response**

```
{
"paging": {
    "totalItems": Int,
    "pageNumber": Int,
    "pageSize": Int,
    "totalPages": Int
},
"links": [
    {
        "pageNumber": Int,
        "href": "urlpath?PageNumber=3&PageSize=1",
        "rel": "previous",
        "method": "GET"
    },
    {
        "pageNumber": Int,
        "href": "urlpath?PageNumber=3&PageSize=2",
        "rel": "self",
        "method": "GET"
    },
	{
        "pageNumber": Int,
        "href": "urlpath?PageNumber=3&PageSize=3",
        "rel": "next",
        "method": "GET"
    },
],
"data": {
    "totalItems": Int,
    "pageNumber": Int,
    "pageSize": Int,
    "list": [], //List Records here
    "totalPages": Int,
    "hasPreviousPage": bool,
    "hasNextPage": bool,
    "nextPageNumber": Int,
    "previousPageNumber": Int,
    "from": Int,
    "to": Int
}

```

}

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

2780d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/fda9f910c1b4b201aad275da435844f2bee2801d95569c12e1a01bd6035b1523?d=identicon)[crystoline](/maintainers/crystoline)

---

Top Contributors

[![crystoline](https://avatars.githubusercontent.com/u/19464250?v=4)](https://github.com/crystoline "crystoline (8 commits)")

### Embed Badge

![Health badge](/badges/crystoline-netcorepaginator/health.svg)

```
[![Health](https://phpackages.com/badges/crystoline-netcorepaginator/health.svg)](https://phpackages.com/packages/crystoline-netcorepaginator)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
