dongluanan7163 2011-05-15 13:29
浏览 34
已采纳

你如何在Doctrine 2中使用实体关系?

When you want to insert an Entity you do this:

$user = new User();
$user->setEmail('john@doe.com');

$em->persist($user);
$em->flush();

But what if I want to create an article which can have one User;

Currently, I need to do:

$user = $em->getRepository('User')->find($id);
$article->setUser($user);

This is because of the relationship, Doctrine 2 asks for an User entity.

However, I can't "mock" an User object, because I don't want the id be set manually, therefore I can't do:

$user = new User();
$user->setId(45);

Am I wrong about this behavior, how do you do?

It can be performance matter to load the User entity just to set the relationship, even with a cache, which cannot be always an option, especially for an update.

  • 写回答

2条回答 默认 最新

  • dongmeng1402 2011-05-15 15:03
    关注

    If you don't have a managed User entity handy, what you want is a reference proxy, which the EM will be happy to give you:

    <?php
    $article = new Entity\Article();
    $article->setTitle('Reference Proxies Rule');
    $article->setBody('...');
    $article->setUser($em->getReference('Entity\User',45));
    $em->persist($article);
    $em->flush();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部