我正在尝试创建一个介于tax_ratescountries之间的一对多,其中一个税率可以有多个国家与之关联,并在引用税率的国家上创建一个联接表,其模式如下:

/** @Entity **/
class TaxRates
{
    ...

    /**
    * @ORM\OneToMany(targetEntity="Acme\DemoBundle\Entity\Country", mappedBy="tax_rate", cascade={"persist"})
    */
    protected $country;

    ...

    public function __construct()
    {
        $this->country = new ArrayCollection();
    }
}

/** @Entity **/
class Country
{
    /**
      * @ORM\ManyToOne(targetEntity="Acme\TaxBundle\Entity\TaxRates", inversedBy="country")
      * @ORM\JoinColumn(name="taxrate_id", referencedColumnName="id")
      */
    protected $tax_rate;
}

在我的符号表中,我有以下国家作为实体类型的税率:
$builder->add('country', 'entity', array(
                'class' => "AcmeDemoBundle:Country",
                'property' => "name",
                "multiple" => true,
            ))

当我加载到表单中时,输入有效数据并提交它,它会正确地写入taxrates表。但是它没有将id添加到国家的join表中,所以我有一个记录,没有引用它。
如果有人能告诉我我做错了什么,那就太好了,谢谢。

最佳答案

这只是一个猜测,但我怀疑你没有打电话给$country->settaxrate。做一些类似的事情:

class TaxRates {
  function addCountry($country) {
    $this->countries[] = $country;
    $country->setTaxRate($this); // This is what might be missing

关于php - Symfony 2学说一对多不写联接表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35578458/

10-12 05:11