web-dev-qa-db-fra.com

Obtenir le nom de table de la classe d'entité

Savez-vous comment obtenir le nom de la table à partir d'une déclaration d'entité dans ma classe de contrôleur

Classe d'entité

<?php

namespace Acme\StoreBundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\ArrayCollection;
use Symfony\Component\Validator\Constraints as Assert;

/**
 * Acme\StoreBundle\Entity\User
 *
 * @ORM\Table(name="users")
 * @ORM\Entity
 */
class User

Je voudrais maintenant obtenir le nom de la table de l'entité utilisateur, comment puis-je faire cela dans mon contrôleur Symfony2?

42
Matt

Depuis un contrôleur, vous utiliseriez:

$em = $this->getDoctrine()->getManager();
$tableName = $em->getClassMetadata('StoreBundle:User')->getTableName();

Notez que la méthode getClassMetadata renvoie un tas d'informations intéressantes sur l'entité.

100
Steven Mercatante

J'avais besoin de trouver le nom d'une table de mappage dans une relation plusieurs-à-plusieurs (en utilisant FOSUserBundle). Peut-être que cela aide quelqu'un:

    $groupAssociation = $this->getEntityManager()
                             ->getClassMetadata('UOACLBundle:User')
                             ->getAssociationsByTargetClass(Group::class);

    // 'groups' is the name of the property in my User Class
    $mappingTable = $groupAssociation['groups']['joinTable']['name'];
5
con

Avec Symfony 2.3 & Doctrine 2 cela a fonctionné pour moi:

// my entity is called "Record"
// Acme/DemoBundle/Entity/RecordRepository.php
class RecordRepository extends EntityRepository
{

     /**
     * Sets the primary table definition. The provided array supports the
     * following structure:
     *
     * name => <tableName> (optional, defaults to class name)
     * indexes => array of indexes (optional)
     * uniqueConstraints => array of constraints (optional)
     *
     * If a key is omitted, the current value is kept.
     *
     * @param array $table The table description.
     */
    public function setDataTableName($tableInfo) {
        return $this->getEntityManager()->getClassMetadata('AcmeDemoBundle:Record')->setPrimaryTable($tableInfo);
    }

}
0
herrjeh42