-
-
Notifications
You must be signed in to change notification settings - Fork 641
WriteableCollection.delete()
David Fahlander edited this page Apr 9, 2014
·
29 revisions
Deletes all objects in the query.
collection.delete()
db.orders.where("state").anyOf("finished", "discarded").or("date").below("2014-02-01").delete()
.then(function(deletedOrders) {
console.log( JSON.stringify(deletedOrders) ):
});
This method is equivalent to the following:
collection.each(function (item, cursor) {
cursor.delete();
});
Dexie.js - minimalistic and bullet proof indexedDB library