Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Myers authored Jul 20, 2017
1 parent c02018c commit 6c786e4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ PaginableCollections.AspNetCore

A light weight pagination framework for .NET and .NET Core - now with additional MVC6 support!

### How Do I Use It?
Configure MVC to use PaginableCollections.
````csharp
public void ConfigureServices(IServiceCollection services)
{
// important stuff...
services.AddMvc()
.UsePaginableHeaders(u => u.UseCondensed());

// important stuff...
}
````
### Installing PaginableCollections.AspNetCore

You should install [PaginableCollections.AspNetCore with NuGet](https://www.nuget.org/packages/paginablecollections.aspnetcore):
Expand Down

0 comments on commit 6c786e4

Please sign in to comment.