使用 Criteria 和 Many-To-Many-Relation 的查询中的错误字段名
Wrong fieldname in query with Criteria and Many-To-Many-Relation
当我尝试在多对多关系中使用具有不同列名的 属性 上的简单条件时,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`'
...
Person::hasAttribute()-方法
$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" class 函数 "loadCriteria()" 行:
foreach ($parameters as $parameter) {
list($name, $value) = $parameter;
$whereClauses[] = sprintf('te.%s = ?', $name);
$params[] = $value;
}
已在 github link and the pull request
添加修复
可以看到,上面的代码改成了:
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 版本的一部分。
我建议你使用 master 分支中的代码。
更新:此修复自 version 2.6 起可用。
当我尝试在多对多关系中使用具有不同列名的 属性 上的简单条件时,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`'
...
Person::hasAttribute()-方法
$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" class 函数 "loadCriteria()" 行:
foreach ($parameters as $parameter) {
list($name, $value) = $parameter;
$whereClauses[] = sprintf('te.%s = ?', $name);
$params[] = $value;
}
已在 github link and the pull request
添加修复可以看到,上面的代码改成了:
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 版本的一部分。 我建议你使用 master 分支中的代码。
更新:此修复自 version 2.6 起可用。