Skip to content

hqtruong27/PagedListExtensions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What is PagedListExtensions?

I wrote a small library to use for easier pagination

How do I get started?

In your application code

var result = source.ToPagedList(pageNumber, pageSize);
var result = source.ToPagedList(x => new Foo() {Id= x.Id, Code= x.Code }, pageNumber, pageSize);

Async Method

var result = await source.ToPagedListAsync(pageNumber, pageSize);
var result = await source.ToPagedListAsync(x => new Foo() {Id= x.Id, Code= x.Code }, pageNumber, pageSize);

Where can I get it?

First, install NuGet. Then, install PagedListExtensions from the package manager console:

PM> Install-Package PagedListExtensions

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages