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
When deleting a parent model instance, the children (hasMany) are updated. When flushing the session, epf does a PUT for each child because they are dirty.
Actually, the server takes care of the dependencies with a cascade delete, so after the parent instance DELETE call, the children no longer exist...
How to remove those children from the session without server call?
Thanks in advance
The text was updated successfully, but these errors were encountered:
Hi,
When deleting a parent model instance, the children (hasMany) are updated. When flushing the session, epf does a PUT for each child because they are dirty.
Actually, the server takes care of the dependencies with a cascade delete, so after the parent instance DELETE call, the children no longer exist...
How to remove those children from the session without server call?
Thanks in advance
The text was updated successfully, but these errors were encountered: