merge
Last updated
Was this helpful?
Merge an entity or array of entities back into the session
Same entity if one passed, array if an array of entities passed.
Key
Type
Required
Default
Description
entity
any
Yes
---
// merge a single entity back
ormService.merge( userEntity );
// merge an array of entities
collection = [entity1,entity2,entity3];
ormService.merge( collection );Last updated
Was this helpful?
Was this helpful?