4

几个月前我开始使用 symfony,有一件事情一直困扰着我。当我在 Doctrine 中有一个一对多的关系并且我尝试将一些东西插入数据库时​​。这是一个例子:

经纪人.orm.yml

Acme\DemoBundle\Entity\Broker:
    type: entity
    table: brokers
    repositoryClass: BrokerRepository
    id:
        id:
            type: integer
            generator: { strategy: AUTO }
    fields:
        name:
            type: string
            length: 255
        slug:
            type: string
            length: 64
    oneToMany:
        accountTypes:
            targetEntity: Acme\DemoBundle\Entity\AccountType
            mappedBy: broker
            cascade: ["persist"]

AccountType.orm.yml

Acme\DemoBundle\Entity\AccountType:
    type: entity
    table: account_types
    repositoryClass: AccountTypeRepository
    id:
        id:
            type: integer
            generator: { strategy: AUTO }
    fields:
        name:
            type: string
            length: 255
        slug:
            type: string
            length: 64
    manyToOne:
        broker:
            targetEntity: Acme\DemoBundle\Entity\Broker
            inversedBy: accountTypes
            joinColumn:
                name: broker_id
                referencedColumn: id

然后尝试像这样将其保存到数据库中。

$accountType = new AccountType();
$accountType->setName("blabla");
// additional data to accountType

$broker->addAccountType($accountType);

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

奇怪的是,它只有一个小问题才能正常工作。Broker 更新,AccountType 被插入到数据库中,但accountType 与 Broker 没有任何关系。换句话说,当我签入数据库时​​,broker_id字段保持不变并包含NULL.

如果我$accountType->setBroker($broker)手动添加,它可以工作。但是我开始使用 Sonata Admin Bundle,因为这样做要复杂得多,而且我真的不需要复杂的管理系统。所以我只想快速开发它,没有这个“功能”几乎是不可能的。

无论如何,如果我向一个对象的集合添加一些东西,它应该知道哪个对象是它的父对象,对吧?:)

提前感谢您的帮助!

4

1 回答 1

7
class Broker
{
    public function addAccountType($accountType)
    {
        $this->accountTypes[] = $accountType;

        // *** This is what you are missing ***
        $accountType->setBroker($this);
于 2013-10-26T23:02:14.997 回答