Symfony 4 – Can't access to my entity collection – Phpmyadmin
I've a Symfony 4 project with User entity and SoldeConges Entity. An user has a SoldeConges collection. But when I dump the $user->getSoldeConges(), the collection is empty. My User entity : /** * @ORMOneToMany(targetEntity="AppEntitySoldeConges", mappedBy="user", orphanRemoval=true) */ private $soldeConges; /**…