Symfony2 / Doctrine2:如何访问实体注释映射?

时间:2015-05-25 17:40:30

标签: symfony doctrine-orm annotations mapping accessor

在我的Symfony2 / doctrine2应用程序中,我有两个实体,Media和Recipe。

它们可以通过oneToMany或ManyToMany关联链接。

对于oneToMany关系,我使用以下代码检索链接到Media实例的Recipe:

$accessor = PropertyAccess::createPropertyAccessor();
$reflect = new ReflectionClass($media);
$shortName =  $reflect->getShortName();
$value = $accessor->getValue($element, $shortName);

但是,如果关系是manyToMany,并且如果我给该属性提供了自定义名称,则前面的代码不起作用。

如何以编程方式从Media类的注释映射中检索mappedBy的“配方”?

/**
 * @ORM\OrderBy({"sortablePosition" = "ASC"})
 * @Assert\Valid()
 * @ORM\ManyToMany(targetEntity="\AppBundle\Entity\Core\Media", mappedBy="recipes", cascade={"persist", "remove"})
 */
protected $medias;

2 个答案:

答案 0 :(得分:1)

您需要的是一个实现Doctrine\Common\Annotations\Reader接口的类。它被注册为annotation_reader服务。有了这个类,您可以使用getClassAnnotationgetMethodAnnotations等方法获取各种对象的注释。在您的情况下,getPropertyAnnotations似乎是一个不错的选择:

$reflClass = new \ReflectionClass($class); //$class is an instance of your entity
$refProp = $reflClass->getProperty('medias');
$annotations = $reader->getPropertyAnnotations($refProp);

$annotations是注释的集合。在你的情况下,将有3个元素。查看doc了解详情

答案 1 :(得分:0)

您可以从实体的元数据中接收有关映射的信息。

$metadata = $this->getDoctrine()
   ->getManager()
   ->getMetadataFactory
   ->getMetadataFor(\Doctrine\Common\Util\ClassUtils::getClass($object))
;