Symfony Doctrine查询生成器。如何在没有连接的情况下选择多对一字段的值?

问题描述 投票:0回答:1

我有两个实体:

 class Products
 {
    /**
     * @ORM\Column(name="id", type="integer", nullable=false)
     * @ORM\Id
     */
    private $id;

     /**
      * @ORM\Column(name="name", type="string", length=255, nullable=true)
      */
     private $name;

     /**
      * @var CatalogSections|null $catalogSection
      * @ORM\ManyToOne(targetEntity="App\Entity\CatalogSections")
      * @ORM\JoinColumn(name="catalog_section", referencedColumnName="id")
      */
     private $catalogSection; 

     ...
}

和目录部分

class CatalogSections
{
    /**
     * @ORM\Column(name="id", type="integer", nullable=false)
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    private $id;

    /**
     * @ORM\Column(name="name", type="string", length=250, nullable=true)
     */
    private $name;

    ...
}

我想通过Doctrine Query Builder获取产品的catalog_section ID。有没有办法在没有加入的情况下获得它? I.E.我想获得一个存储在products表中的catalog_section列值

$qb = $this->createQueryBuilder('products');

$qb->select('products.id', 'products.name',
    'products.catalogSection' // catalog_section 
);
symfony doctrine
1个回答
1
投票

在没有加入的情况下选择ID的唯一正当理由是获得性能。

当涉及性能时,最好直接使用DBAL Connection而不是查询构建器。

$this->entityManager->getConnection()->executeQuery('SELECT id, name, catalog_section FROM products')

© www.soinside.com 2019 - 2024. All rights reserved.