当我尝试在多对多关系中对具有不同列名的属性使用简单的标准时,Doctrine 使用属性名作为字段而不是列名。
人 ORM 定义
...
manyToMany:
attributes:
targetEntity: Attributes
cascade: ['persist']
joinTable:
name: person_attribute
joinColumns:
person_id:
referencedColumnName: id
inverseJoinColumns:
attribute_id:
referencedColumnName: id
...
具有不同列名的属性 ORM 定义
...
name:
type: string
nullable: false
length: 50
options:
fixed: false
column: '`key`'
...
人::hasAttribute()-Method
$criteria = Criteria::create()
->where(Criteria::expr()->eq('name', $attributeName))
->setFirstResult(0)
->setMaxResults(1);
if ($this->getAttributes()->matching($criteria)->first()) {
return true;
}
生成的语句
SELECT
te.id AS id,
te.description AS description,
te.key AS key
FROM
attribute te
JOIN
person_attribute t
ON
t.attribute_id = te.id
WHERE
t.person_id = ?
AND
te.name = ? ## <- This should be "te.`key` = ?"
问题出在"lib/Doctrine/ORM/Persisters/Collection/ManyToManyPersister.php"类中,在函数"loadCriteria()"中:
foreach ($parameters as $parameter) {
list($name, $value) = $parameter;
$whereClauses[] = sprintf('te.%s = ?', $name);
$params[] = $value;
}
修复程序是在 GitHub 链接和拉取请求中添加的
如您所见,上面的代码已更改为:
foreach ($parameters as $parameter) {
list($name, $value) = $parameter;
$field = $this->quoteStrategy->getColumnName($name, $targetClass, $this->platform);
$whereClauses[] = sprintf('te.%s = ?', $field);
$params[] = $value;
}
当前版本不使用此修复程序。它将成为 2.6 版本的一部分。我建议你在主分支中使用代码。
更新:此修复程序从版本 2.6 开始可用。