我正在 Symfony 2.2 中构建一个应用程序。
我为我的一个实体使用自定义存储库类。我像这样包括它:
@ORM\Entity(repositoryClass="MyApp\MainBundle\Entity\CategoryRepository")
我想在我的类别实体上使用来自其他两个存储库类的方法。
@ORM\Entity(repositoryClass="Gedmo\Sortable\Entity\Repository\SortableRepository")
@ORM\Entity(repositoryClass="Gedmo\Tree\Entity\Repository\NestedTreeRepository")
然而,该实体只需要一个 repositoryClass。如何将所有这三个存储库用于同一个实体?