diff --git a/lib/Doctrine/ORM/UnitOfWork.php b/lib/Doctrine/ORM/UnitOfWork.php index d3ae9d627..ee38260fb 100644 --- a/lib/Doctrine/ORM/UnitOfWork.php +++ b/lib/Doctrine/ORM/UnitOfWork.php @@ -1808,7 +1808,11 @@ class UnitOfWork implements PropertyChangedListener $newValue = $assoc->load($entity, null, $this->_em, $associatedId); } else { $newValue = $this->_em->getProxyFactory()->getProxy($assoc->targetEntityName, $associatedId); - $this->registerManaged($newValue, $associatedId, array()); + // PERF: Inlined & optimized code from UnitOfWork#registerManaged() + $newValueOid = spl_object_hash($newValue); + $this->_entityIdentifiers[$newValueOid] = $associatedId; + $this->_identityMap[$targetClass->rootEntityName][$relatedIdHash] = $newValue; + $this->_entityStates[$newValueOid] = self::STATE_MANAGED; } } $this->_originalEntityData[$oid][$field] = $newValue;