2

我有 2 个实体:ProfileContact 和 Profile。它们之间存在关联。

class ProfileContact {

    /**
     * @var integer $profileContactId
     *
     * @ORM\Column(name="profile_contact_id", type="integer", nullable=false)
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    private $profileContactId;

    /**
     * @var text $description
     *
     * @ORM\Column(name="description", type="text", 
     * nullable=true)
     */
    private $description;

    /**
     * @var Profile
     *
     * @ORM\ManyToOne(targetEntity="Profile")
     * @ORM\JoinColumns({
     *   @ORM\JoinColumn(name="profile_id", 
     * nullable=false, 
     * onDelete="CASCADE", referencedColumnName="profile_id")
     * })
     */
    private $profile;
}

.

class Profile {

    /**
     * @var integer $profileId
     *
     * @ORM\Column(name="profile_id", type="integer", nullable=false)
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    private $profileId;
}

当然也有合适的 setter 和 getter。

我应该如何创建和持久化 ProfileContact 实体以与现有配置文件关联但 D2 之前未获取?我不想向数据库询问整个 Profile 实体。

    $profile = $this->getProfileRepository()->find(2);  //I want to avoid this
    $item = new \Alden\BonBundle\Entity\ProfileContact();
    $item->setProfile($profile);
    $item->setDescription('abc');
    $em = $this->getEntityManager();
    $em->persist($item);
    $em->flush();
4

1 回答 1

2

试试这个

$item->setProfile($em->getReference('Profile', 2));
于 2012-06-01T10:15:01.493 回答