Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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 @ORMHasLifecycleCallbacks 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(AppBundleEntityAvatar)
    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(AppBundleEntityAvatar)
    private 'id' => int 20
    public 'file' => null
    private 'fileName' => string 'myfile.png'

How can I get the Avatar associated with my user ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
292 views
Welcome To Ask or Share your Answers For Others

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...