2

我有一个学说设置,我不能使用集合的许多方面。

使用的对象:User.php:

class User extends \App\Entity
{
    /**
     * @Id @Column(type="integer")
     * @GeneratedValue
     */
    private $id;

    /**
    * @ManyToOne(targetEntity="Company", inversedBy="users")
    */
    private $company;

    public function getCompany()
    {
        return $this->company;
    }
    public function setCompany($company)
    {
        $this->company = $company;
    }
}

公司.php:

class Company extends \App\Entity
{

    /**
     * @Id @Column(type="integer", nullable=false)
     * @GeneratedValue
     */
    private $id;

    /**
     * @OneToMany(targetEntity="User", mappedBy="company")
     */
    private $users;



    public function __construct()
    {
        $this->users = new \Doctrine\Common\Collections\ArrayCollection();
    }
    public function getUsers()
    {
        return $this->users;
    }
}

当我创建关系似乎正在工作。没有错误。然后我尝试了以下方法:

$company = $this->em->getRepository('App\Entity\Company')->findOneByName("Walmart");
$user = $this->em->getRepository('App\Entity\User')->findOneByName("Niek");
$user->setCompany($company);

$company2 = $this->em->getRepository('App\Entity\Company')->findOneByName("Ford");
$user2 = $this->em->getRepository('App\Entity\User')->findOneByName("Henk");
$company2->getUsers()->add($user2);
$this->em->flush();

当我检查该公司的第一个用户的数据库时。关系就在那里。秒数不会持续。当我这样做时:

print_r(\Doctrine\Common\Util\Debug::dump($company->getUsers(),$doctrineDepth));
print_r(\Doctrine\Common\Util\Debug::dump($company->getUsers2(),$doctrineDepth));

我得到 2 个空数组。

所以看起来阵列没有连接。它只在 OneToMany 或 ManyToOne 关系上表现得像这样。得到了一个 ManyToMany 并且在同一个项目中完美运行

有任何想法吗?

4

1 回答 1

0

您仍然需要将关系的双方设置为一对多或多对一关系:

$company2 = $this->em->getRepository('App\Entity\Company')->findOneByName("Ford");
$user2 = $this->em->getRepository('App\Entity\User')->findOneByName("Henk");
$company2->getUsers()->add($user2);
$user2->setCompany($company2);
$this->em->flush();

你的多对多工作的原因是你不需要设置关系的双方。

于 2013-06-11T10:13:31.997 回答