-
-
Notifications
You must be signed in to change notification settings - Fork 641
Table.where()
David Fahlander edited this page Mar 28, 2014
·
15 revisions
Start filtering the object store by creating a WhereClause instance.
table.where(indexOrPrimaryKey)
indexOrPrimaryKey: String | Name of an index or primary key registered in Version.stores() |
db.friends.where("name").equalsIgnoreCase("david").each(function (friend) {
console.log("Found: " + friend.name + ". Phone: " + friend.phoneNumber);
}).catch(function (error) {
console.error(error);
});
Dexie.js - minimalistic and bullet proof indexedDB library