-
-
Notifications
You must be signed in to change notification settings - Fork 669
Table.limit()
David Fahlander edited this page May 8, 2014
·
6 revisions
Returns a Collection limited to N items.
db.[table].limit(N)
This method is equivalent to:
db.[table].toCollection().limit(N)
or:
db.[table].orderBy(':id').limit(N)
Dexie.js - minimalistic and bullet proof indexedDB library