-
-
Notifications
You must be signed in to change notification settings - Fork 641
Table.offset()
David Fahlander edited this page May 8, 2014
·
16 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