gpt4 book ai didi

php - 如何批量删除 Doctrine 2 中 ManyToMany 关系中的实体?

转载 作者:可可西里 更新时间:2023-11-01 12:40:02 25 4
gpt4 key购买 nike

假设我有以下类(class):

class Store
{
/**
* @ManyToMany(targetEntity="PaymentMethod")
*/
protected $paymentMethods;
}

class PaymentMethod
{
}

当我们删除(或只是禁用,而不是从数据库中实际删除)一个PaymentMethod时,我们希望这个paymentMethod从所有中删除Store::$paymentMethods 集合。

到目前为止,我们一直在联结表上使用原始 SQL 查询:

DELETE FROM StorePaymentMethod WHERE paymentMethodId = ?

有没有办法在 Doctrine 中做到这一点,最好是在 DQL 中?

最佳答案

类似的东西?

$qb = $em->createQueryBuilder();

$qb->delete('StorePaymentMethod', 'spm')
->where('spm.paymentMethodId = : paymentMethodId')
->setParameter('paymentMethodId', $id);

return $qb->getQuery()->getResult();

关于php - 如何批量删除 Doctrine 2 中 ManyToMany 关系中的实体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9226544/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com