cborm
v4.x
Ask or search…
K
Links
Comment on page

saveAll

Saves an array of passed entities in specified order and transaction safe

Returns

  • This function returns void

Arguments

Key
Type
Required
Default
Description
entities
array
Yes
---
The array of entities to persist
forceInsert
boolean
No
false
flush
boolean
No
false
transactional
boolean
No
true
Use ColdFusion transactions or not

Examples

var user = ormService.new("User");
populateModel(user);
var user2 = ormService.new("User");
populateModel(user);
ormService.saveAll( [user1,user2] );
Last modified 1yr ago