我正在尝试在tax_rates
和countries
之间创建一对多,其中一个税率可以与多个国家/地区相关联,并且在引用tax_rate的国家/地区上使用联接表以下架构:
/** @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;
}
我在TaxRates的Symfony表格中有以下内容,其中国家/地区被列为实体类型:
$builder->add('country', 'entity', array(
'class' => "AcmeDemoBundle:Country",
'property' => "name",
"multiple" => true,
))
当我加载到表单中时,输入有效数据然后提交它,它会正确写入TaxRates表。但是它没有将id添加到国家/地区的连接表中,所以我有一个记录,没有任何引用它。
如果有人能告诉我我做错了什么,那就太棒了,谢谢。
答案 0 :(得分:0)
这只是猜测,但我怀疑你没有打电话给$ country-> setTaxRate。做类似的事情:
class TaxRates {
function addCountry($country) {
$this->countries[] = $country;
$country->setTaxRate($this); // This is what might be missing