You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge an entity or array of entities back into the session
Returns
Same entity if one passed, array if an array of entities passed.
Arguments
Key
Type
Required
Default
Description
entity
any
Yes
---
Examples
// merge a single entity backormService.merge(userEntity);// merge an array of entitiescollection=[entity1,entity2,entity3];ormService.merge(collection);