. */ namespace Doctrine\ORM\Query; use Doctrine\ORM\EntityManager; /** * A ResultSetMappingBuilder uses the EntityManager to automatically populate entity fields * * @author Michael Ridgway * @since 2.1 */ class ResultSetMappingBuilder extends ResultSetMapping { /** * @var EntityManager */ private $em; /** * @param EntityManager */ public function __construct(EntityManager $em) { $this->em = $em; } /** * Adds a root entity and all of its fields to the result set. * * @param string $class The class name of the root entity. * @param string $alias The unique alias to use for the root entity. * @param string $prefix Prefix for columns */ public function addRootEntityFromClassMetadata($class, $alias, $prefix = '') { $this->addEntityResult($class, $alias); $classMetadata = $this->em->getClassMetadata($class); $platform = $this->em->getConnection()->getDatabasePlatform(); foreach ($classMetadata->getColumnNames() AS $columnName) { $this->addFieldResult($alias, $platform->getSQLResultCasing($prefix . $columnName), $classMetadata->getFieldName($columnName)); } } /** * Adds a joined entity and all of its fields to the result set. * * @param string $class The class name of the joined entity. * @param string $alias The unique alias to use for the joined entity. * @param string $parentAlias The alias of the entity result that is the parent of this joined result. * @param object $relation The association field that connects the parent entity result with the joined entity result. * @param string $prefix Prefix for columns */ public function addJoinedEntityFromClassMetadata($class, $alias, $parentAlias, $relation, $prefix = '') { $this->addJoinedEntityResult($class, $alias, $parentAlias, $relation); $classMetadata = $this->em->getClassMetadata($class); $platform = $this->em->getConnection()->getDatabasePlatform(); foreach ($classMetadata->getColumnNames() AS $columnName) { $this->addFieldResult($alias, $platform->getSQLResultCasing($prefix . $columnName), $classMetadata->getFieldName($columnName)); } } }