gpt4 book ai didi

symfony - Doctrine/交响曲2-从表WHERE字段中删除= “test”

转载 作者:行者123 更新时间:2023-12-04 13:40:25 24 4
gpt4 key购买 nike

我不敢相信我似乎无法在任何地方找到它(不仅仅是强制整个SQL进入)。 Docs谈论添加,搜索,更新和删除实体,但是我只是看不到如何执行纯SQL中的操作:

DELETE FROM table WHERE field = "test"

我猜这只是添加和更新,所以我不能使用它:
$product = new Product();

// etc.

$em = $this->getDoctrine()->getEntityManager();
$em->persist($product);
$em->flush();

而且我也不认为“删除”选项可以做到这一点:
$em->remove($product);
$em->flush();

那么,有人能指出我正确的方向吗?

最佳答案

搜索实体并将其删除。

$em = $this->getDoctrine()->getEntityManager();
$repository = $em->getRepository('MyBundle:Product');

/** @var $product Product */
$product = $repository->findOneBy(array('field' => 'test'));
$em->remove($product);
$em->flush();

关于symfony - Doctrine/交响曲2-从表WHERE字段中删除= “test”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17911006/

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