I am trying to build a simple backend application based on EasyAdmin. The ORM is Doctrine.
I have set up 3 entities : * Entity A has a unidirectional many-to-many relation to entity B * Entity B has a one-to-one relation to entity C * Entity C has some basic properties
In EasyAdmin I have set up the Entity A and Entity C. The purpose is to add/edit Entity B while adding/editing entity A. II found the following which is exactly what I want. symfony easyadmin one to many form.
But when I want to add an Entity B while adding Entity A, it creates a form with the appropriate fields but the form has its own save button. Which seems to conflict with the main save button. Results
Is there a working example of what I want to achieve or some documentation on how to do it ?
Regards
Christophe Absil