how can i page my linq to sql result set
Posted
by cyberdantes
on Stack Overflow
See other posts from Stack Overflow
or by cyberdantes
Published on 2010-02-03T15:32:12Z
Indexed on
2010/03/08
20:36 UTC
Read the original article
Hit count: 859
linq-to-sql
|paging
Remembering MySQL could use the instruction "limit" to indicate where I was starting my result set and how many wanted to have included.
Select * FROM Users Limit [start], [Length]
How can I do this in LinqToSql
© Stack Overflow or respective owner