Fix DDC-1690
Added the lines suggested by the original reporter.
This commit is contained in:
parent
4bbfe0ce8a
commit
5627993827
1 changed files with 3 additions and 0 deletions
|
@ -2573,6 +2573,9 @@ class UnitOfWork implements PropertyChangedListener
|
||||||
$newValueOid = spl_object_hash($newValue);
|
$newValueOid = spl_object_hash($newValue);
|
||||||
$this->entityIdentifiers[$newValueOid] = $associatedId;
|
$this->entityIdentifiers[$newValueOid] = $associatedId;
|
||||||
$this->identityMap[$targetClass->rootEntityName][$relatedIdHash] = $newValue;
|
$this->identityMap[$targetClass->rootEntityName][$relatedIdHash] = $newValue;
|
||||||
|
if ($newValue instanceof NotifyPropertyChanged) {
|
||||||
|
$newValue->addPropertyChangedListener($this);
|
||||||
|
}
|
||||||
$this->entityStates[$newValueOid] = self::STATE_MANAGED;
|
$this->entityStates[$newValueOid] = self::STATE_MANAGED;
|
||||||
// make sure that when an proxy is then finally loaded, $this->originalEntityData is set also!
|
// make sure that when an proxy is then finally loaded, $this->originalEntityData is set also!
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Reference in a new issue