1

what is the equivalent sqlite query of the following statement?

Data = _db.EMP_TRACKING.OrderBy(m => m.ID).Skip(page - 1).Take(PageSize)

Or

What will be the query for the following scenario??

Say, I have table with 100000 rows. First I want select 1-100, then 101-200 ......

BenMorel
  • 31,815
  • 47
  • 169
  • 296
Atish Dipongkor
  • 9,710
  • 8
  • 47
  • 76
  • Can't you view generated SQL when you execute the statement, or just do `Data.ToString()`? And it should be `page x PageSize - 1`. – Gert Arnold Jun 13 '13 at 07:24

0 Answers0