I have a problem and of course i dont understand :) (and of course im french :)
On a table "evenement" i have a user linked. And When i do :
$repository = $this->getDoctrine()->getManager()->getRepository('AppBundle:Evenement');
$evt = $repository->findOneById($evt);
dump($evt)
All is ok, i can read my evt, but when in profiler i click on a child object "user", all property are null (except id, usermail, mail, password)
and its the same thing when i do :
dump($evt->getUser());
Why all property are not filled ?
thank you and sorry for my english.