学说:如何加入特定行?

Doctrine: How to join on a specific row?

让我们看看我的类。如您所见,Model 有 Batteries,这是一种多对多关系。模型还有 1 块电池,这是数量最多的电池之一。

我想 select 电池(不是其中一个电池)大于 1500mAh 的所有型号。我想在模型上加入电池,但这意味着所有电池都会加入。这在我看来是一种性能浪费,因为我已经知道我想加入哪个 Battery。有什么方法可以加入特定行吗?

型号:

    /**
 * @Entity
 **/

class Model{
    /**
     * @Id @Column(type="integer")
     * @GeneratedValue
     */
    protected $id;

    /**
     * @Column(type="string")
     */
    protected $name;

    /**
     * @Column(type="string", nullable=true)
     */
    protected $alias;


    /**
     * @ManyToMany(targetEntity="Battery", cascade={"persist"})
     * @JoinTable(joinColumns={@JoinColumn(referencedColumnName="id")},
     *      inverseJoinColumns={@JoinColumn(referencedColumnName="id", unique=true)}
     *      )
     */
    protected $batteries;

    /**
     * @OneToOne(targetEntity="Battery")
     * @JoinColumn(referencedColumnName="id", nullable=true)
     */
    protected $battery;
}

电池:

/**
 * @Entity
 **/

class Battery{
    /**
     * @Id @Column(type="integer")
     * @GeneratedValue
     */
    protected $id;

    /**
     * @Column(type="integer")
     */
    protected $mah;

    /**
     * @Column(type="integer")
     */
    protected $count;
}

您可以在加入中指定一个条件:

$queryBuilder = $this->createQueryBuilder('model')
                     ->select('model')
                     ->from('Model', 'model')
                     ->join('model.battery', 'battery', 'WITH', 'battery.mah > 1500');

DQL 版本:

$query = $entityManager->createQuery('SELECT model FROM Model model JOIN model.battery battery WITH battery.mah > 1500');