Preventing Automatic Saving of Associated Entities when Saving the Parent Entity

0
Why does the automatic saving of associated entities occur when saving the parent entity ? Additionally, I am seeking guidance on how to prevent this automatic cascade behavior, as it is not desired in my application. What steps can be taken to ensure that saving the parent entity does not trigger the automatic save of associated entities, and how can this behavior be customized or disabled?
asked
1 answers
1

You can find your answer in the documentation. You will have to reconsider your model, or work with non-persistant entities before creating database entries for example.

answered