我正在构建一个产品管理工具,product
可以有attributes
,documents
,features
,images
, videos
以及type
,brand
和category
。还有一些其他相关的表,但这足以证明问题。
有一个名为ProductModel
的Model类,它包含一个这样的方法(为了清晰起见而减少):
public function loadValues() {
//Product entity data
$this->id = $this->entity->getId();
$this->slug = $this->entity->getSlug();
// One of each of these
$this->loadType();
$this->loadBrand();
$this->loadCategory();
// Arbitrary number of each of these
$this->loadAttributes();
$this->loadDocuments();
$this->loadFeatures();
$this->loadImages();
$this->loadVideos();
...
}
每个加载方法都会执行一些最终执行此方法的样板:
public function loadEntitiesByProductId($productId=0) {
// Get all the entities of this type that are associated with the product.
$entities = $this->entityManager
->getRepository($this->entityName)
->findByProduct($productId);
$instances = array();
// Create a Model for each entity and load the data.
foreach ($entities as $entity) {
$id = $entity->getId();
$instances[$id] = new $this->childClass();
$instances[$id]->entity = $entity;
$instances[$id]->loadValues();
}
return $instances;
}
对于相关实体是单个表的情况,这是可以的,但通常它是映射器。在这些情况下,我在第一个查询中获取所有映射器实体,然后我必须在loadValues()
方法中查询相关实体(通过Doctrine&#39; s get<Entity>()
方法)。该过程的结果是大量查询(通常> 100)。我需要摆脱无关的查询,但我希望这样做而不会丢失我在我的数据模型中使用的习语。
有没有办法让entityManager更好地使用连接来分组这些查询?
答案 0 :(得分:1)
我之前的方法存在一些问题:
首先,我从存储库中获取实体,而不是从现有实体加载它们:
$entities = $this->entityManager
->getRepository($this->entityName)
->findByProduct($productId);
更好的是:
$method = $this->deriveGetMethod($this->entityName);
$entities = $productEntity->$method()
其次,我使用$this->entityManager->getRespository...
检索产品实体,它可以很好地加载小数据集(单个表或一个或两个关系),但是没有办法获取存储库&#39 ; s findBy
方法在单个查询中加载关系。解决方案是使用queryBuilder。
$qb = $this->entityManger->createQueryBuilder();
$query = $this->select('product',/*related tables*/)->/*joins etc.*/
$productEntity = $query->getSingleResult();