Table.bulkAdd()
Syntax
table.bulkAdd(items, keys?, options?);Parameters
items
Array of objects to add
var db = new Dexie("test");
db.version(1).stores({
tableWithInboundKeys: "id,x,y,z", // Don't provide "keys"
tableWithAutoIncNonInbound: "++,x,y,x", // Optionally provide "keys"
tableWithoutInboundKeys: ",x,y,z" // Always provide "keys"
});