-
-
Notifications
You must be signed in to change notification settings - Fork 668
Table.limit()
David Fahlander edited this page May 8, 2014
·
6 revisions
Returns a Collection (ordered by primary key), where the first N items in the obsject store are ignored.
db.[table].offset(N)
This method is equivalent to:
db.[table].toCollection().offset(N)
or:
db.[table].orderBy(':id').offset(N)
Dexie.js - minimalistic and bullet proof indexedDB library