pathExpression->field !== null); $entityManager = $sqlWalker->getEntityManager(); $platform = $entityManager->getConnection()->getDatabasePlatform(); $quoteStrategy = $entityManager->getConfiguration()->getQuoteStrategy(); $dqlAlias = $this->pathExpression->identificationVariable; $assocField = $this->pathExpression->field; $assoc = $sqlWalker->getMetadataForDqlAlias($dqlAlias)->associationMappings[$assocField]; $targetEntity = $entityManager->getClassMetadata($assoc->targetEntity); assert($assoc->isToOneOwningSide()); $joinColumn = reset($assoc->joinColumns); if ($this->fieldMapping !== null) { if (! isset($targetEntity->fieldMappings[$this->fieldMapping])) { throw new QueryException(sprintf('Undefined reference field mapping "%s"', $this->fieldMapping)); } $field = $targetEntity->fieldMappings[$this->fieldMapping]; $joinColumn = null; foreach ($assoc->joinColumns as $mapping) { if ($mapping->referencedColumnName === $field->columnName) { $joinColumn = $mapping; break; } } if ($joinColumn === null) { throw new QueryException(sprintf('Unable to resolve the reference field mapping "%s"', $this->fieldMapping)); } } // The table with the relation may be a subclass, so get the table name from the association definition $tableName = $entityManager->getClassMetadata($assoc->sourceEntity)->getTableName(); $tableAlias = $sqlWalker->getSQLTableAlias($tableName, $dqlAlias); $columnName = $quoteStrategy->getJoinColumnName($joinColumn, $targetEntity, $platform); return $tableAlias . '.' . $columnName; } public function parse(Parser $parser): void { $parser->match(TokenType::T_IDENTIFIER); $parser->match(TokenType::T_OPEN_PARENTHESIS); $this->pathExpression = $parser->SingleValuedAssociationPathExpression(); if ($parser->getLexer()->isNextToken(TokenType::T_COMMA)) { $parser->match(TokenType::T_COMMA); $parser->match(TokenType::T_STRING); $token = $parser->getLexer()->token; assert($token !== null); $this->fieldMapping = $token->value; } $parser->match(TokenType::T_CLOSE_PARENTHESIS); } }