-
-
Notifications
You must be signed in to change notification settings - Fork 641
Table.where()
Christopher Hunt edited this page Jul 17, 2016
·
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(). The special string ":id" represents the primary key. |
Returns a WhereClause based on given index or primary key. The returned WhereClause can be used to build a query on how to extract objects from the database using any of the methods in WhereClause
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