I have two entities in my project : User and Avatar.
User owns Avatar with a OneToOne relation.
Avatar is an entity with a file object and a fileName. It uses @ORM\HasLifecycleCallbacks to save the file or to remove it as described in the Symfony2 documentation.
In my controller, I want to remove the Avatar entity from the current user (I use $user = $this->get('security.context')->getToken()->getUser()
), but I can't get to the avatar with $user->getAvatar()
:
var_dump($user->getAvatar());
object(AppBundle\Entity\Avatar)
private 'id' => int 20
public 'file' => null
private 'fileName' => null
But if I try to acces the avatar's fileName, it gets returned :
$filename = $user->getAvatar()->getFileName();
var_dump($user->getAvatar());
object(AppBundle\Entity\Avatar)
private 'id' => int 20
public 'file' => null
private 'fileName' => string 'myfile.png'
How can I get the Avatar associated with my user ?
As described in the Doctrine docs, you just need to specify the fetching behavior to be eager.
/**
* @OneToOne(targetEntity="User", fetch="EAGER")
* @JoinColumn(name="user_id", referencedColumnName="id")
*/
See the documentation for YAML or other configuration examples.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With