php-Dctrine 2限制与DQL的关联
作者:互联网
在Doctrine 2.1中似乎有些疏忽,返回一个子集并不容易
协会的集合.
文档建议编写一个存储库查找方法,这很有意义,因为这是我要做的第一件事.
但是,如果没有在实体中引用EntityManager,我看不到如何检索关联的存储库,这似乎使将域与数据库分离的观点变得不对头了?
有针对此问题的推荐策略吗?
这是我对他们建议的解决方案的解释.
class Category
{
protected $id;
protected $articles; // PesistentCollection
protected $em; // The EntityManager from somewhere?
public function getVisableArticles()
{
return $this->em->getRepository('Article')
->getVisibleByCategory($this);
}
}
解决方法:
>在任何情况下,在实体中拥有EntityManager都不是一件好事
(改为注入您的存储库)
>类别不是文章的唯一根源,因为它无法确定所需的文章,因此您需要一个文章存储库.
我会做什么:
class Category
{
protected $id;
protected $articles; // PesistentCollection
public function getVisableArticles(IArticleRepository $articleRepository)
{
return $articleRepository->getVisibleByCategory($this);
}
}
interface IArticleRepository
{
function getVisibleByCategory(Category $category);
}
您的学说的存储库将实现IArticleRepository,并且该类对您的数据存储/学说一无所知.
标签:doctrine-orm,dql,php,repository-pattern 来源: https://codeday.me/bug/20191009/1879646.html