Ray's Asp.net Blog
Answers and code snippets from ASP.NET projects (Webforms/MVC/Classic ASP)
Pages
Event registration app with QR/Paypal
Home
Monday, August 22, 2011
Paging in LINQ
public static
IEnumerable
<TSource> Page<TSource>(
this
IEnumerable
<TSource> source,
int
page,
int
pageSize)
{
return
source.Skip((page - 1)*pageSize).Take(pageSize);
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment