Symfony 2.2 でアプリケーションを構築しています。
エンティティの 1 つにカスタム リポジトリ クラスを使用しています。私はそれを次のように含めます:
@ORM\Entity(repositoryClass="MyApp\MainBundle\Entity\CategoryRepository")
他の 2 つのリポジトリ クラスのカテゴリ エンティティでメソッドを使用したいと考えています。
@ORM\Entity(repositoryClass="Gedmo\Sortable\Entity\Repository\SortableRepository")
@ORM\Entity(repositoryClass="Gedmo\Tree\Entity\Repository\NestedTreeRepository")
ただし、エンティティは 1 つの repositoryClass のみを想定しています。これら 3 つのリポジトリすべてを同じエンティティに使用するにはどうすればよいですか?