Paged queries with QxORM
Does QxORM provide some sort of paged results or cursors?
In MS Linq you could write something like this:
In MS Linq you could write something like this:
- Code: Select all
query = query.Take(page).Skip((page - 1) * pageSize);