fixed DDC-1895
This commit is contained in:
parent
1023af6a1f
commit
64904c77c1
1 changed files with 13 additions and 1 deletions
|
@ -384,7 +384,19 @@ class BasicEntityPersister
|
||||||
$targetMapping = $this->_em->getClassMetadata($this->_class->associationMappings[$idField]['targetEntity']);
|
$targetMapping = $this->_em->getClassMetadata($this->_class->associationMappings[$idField]['targetEntity']);
|
||||||
$where[] = $this->_class->associationMappings[$idField]['joinColumns'][0]['name'];
|
$where[] = $this->_class->associationMappings[$idField]['joinColumns'][0]['name'];
|
||||||
$params[] = $id[$idField];
|
$params[] = $id[$idField];
|
||||||
$types[] = $targetMapping->fieldMappings[$targetMapping->identifier[0]]['type'];
|
|
||||||
|
switch (true) {
|
||||||
|
case (isset($targetMapping->fieldMappings[$targetMapping->identifier[0]])):
|
||||||
|
$types[] = $targetMapping->fieldMappings[$targetMapping->identifier[0]]['type'];
|
||||||
|
break;
|
||||||
|
|
||||||
|
case (isset($targetMapping->associationMappings[$targetMapping->identifier[0]])):
|
||||||
|
$types[] = $targetMapping->associationMappings[$targetMapping->identifier[0]]['type'];
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
throw ORMException::unrecognizedField($targetMapping->identifier[0]);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$where[] = $this->quoteStrategy->getColumnName($idField, $this->_class, $this->_platform);
|
$where[] = $this->quoteStrategy->getColumnName($idField, $this->_class, $this->_platform);
|
||||||
$params[] = $id[$idField];
|
$params[] = $id[$idField];
|
||||||
|
|
Loading…
Add table
Reference in a new issue