我正在使用Symfony 2.1.2。
我有两个实体,并定义它们之间的[多对一(双向)](1)关联。我不想使用主键作为外键(referencedColumnName)。我想使用另一个整数唯一列:customer_no
/**
* @ORM\Entity
* @ORM\Table(name="t_myuser")
*/
class MyUser extends BaseEntity // provides an id (pk)
{
/**
* @ORM\ManyToOne(targetEntity="Customer", inversedBy="user")
* @ORM\JoinColumn(name="customer_no", referencedColumnName="customer_no", nullable=false)
*/
public $customer;
}
/**
* @ORM\Entity
* @ORM\Table(name="t_customer")
*/
class Customer extends BaseEntity // provides an id (pk)
{
/**
* @ORM\Column(type="integer", unique=true, nullable=false)
*/
public $customer_no;
/**
* @ORM\OneToMany(targetEntity="MyUser", mappedBy="customer")
*/
public $user;
}
当我尝试使用Customer实体持久保存MyUser实体时,我收到此错误:
注意:未定义的索引:customer_no在... \ vendor \ doctrine \ orm \ lib \ Doctrine \ ORM \ Persisters \ BasicEntityPersister.php第608行
db上的模式看起来很好,这些应该是重要的sql模式定义:
CREATE UNIQUE INDEX UNIQ_B4905AC83CDDA96E ON t_customer (customer_no);
CREATE INDEX IDX_BB041B3B3CDDA96E ON t_myuser (customer_no);
ALTER TABLE t_myuser ADD CONSTRAINT FK_BB041B3B3CDDA96E FOREIGN KEY (customer_no)
REFERENCES t_customer (customer_no) NOT DEFERRABLE INITIALLY IMMEDIATE;
所以 肯定是 customer_no 的索引
//更新: 我修复了inversedBy和mappedBy的东西,但这不是问题。
答案 0 :(得分:2)
<强> @ m2mdas:强>
是的,你是对的,我认为这是可能的,因为JPA (which has influence to doctrine) has this feature。属性referencedColumnName
仅适用于您的属性与表列不匹配的情况。
无论如何,我通过修补BasicEntityPersister.php找到了解决方案,请参阅github上的要点:https://gist.github.com/3800132
解决方案是为映射列添加属性/字段名称和值。这些信息已经存在但未绑定到正确的位置。它必须以这种方式添加到 $ newValId arrray:
$fieldName = $targetClass->getFieldName($targetColumn);
$newValId[$fieldName] = $targetClass->getFieldValue($newVal, $fieldName);
它仅适用于ManyToOne参考。 ManyToMany不起作用。
对于ManyToOne,我使用已有的实体进行测试。你也可以测试它:
更改tests/Doctrine/Tests/Models/Legacy/LegacyArticle.php
中的学说注释
从
@JoinColumn(name="iUserId", referencedColumnName="iUserId")
到
@JoinColumn(name="username", referencedColumnName="sUsername")