Skip to content

Instantly share code, notes, and snippets.

@philjones88
Created January 18, 2012 17:56
Show Gist options
  • Save philjones88/1634476 to your computer and use it in GitHub Desktop.
Save philjones88/1634476 to your computer and use it in GitHub Desktop.
RavenDB Paging
public static class QueryableExtensions
{
public static IQueryable<T> Paging<T>(this IQueryable<T> query, int currentPage, int defaultPage, int pageSize)
{
return query
.Skip((currentPage - defaultPage) * pageSize)
.Take(pageSize);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment