删除相关实体行中许多人在Doctrine2一对多的关系(Delete row from relate

2019-10-21 16:19发布

我有这样的实体:

class FabricanteProductoSolicitud
{
    use IdentifierAutogeneratedEntityTrait;

    /**
     * @ORM\ManyToOne(targetEntity="\AppBundle\Entity\FabricanteDistribuidor")
     * @ORM\JoinColumn(name="fabricante_distribuidor_id", referencedColumnName="id")
     */
    protected $fabricante_distribuidor;

    /**
     * @ORM\ManyToOne(targetEntity="\AppBundle\Entity\ProductoSolicitud")
     * @ORM\JoinColumn(name="producto_solicitud_id", referencedColumnName="id")
     */
    protected $producto_solicitud;

    /**
     * @ORM\ManyToMany(targetEntity="\AppBundle\Entity\Pais", inversedBy="fabricanteProductoSolicitudPais", cascade={"persist"})
     * @ORM\JoinTable(name="nomencladores.pais_fabricante_producto_solicitud", schema="nomencladores",
     *      joinColumns={@ORM\JoinColumn(name="fabricante_producto_solicitud_id", referencedColumnName="id")},
     *      inverseJoinColumns={@ORM\JoinColumn(name="pais_id", referencedColumnName="id")}
     * )
     */
    protected $paisesFabricanteProductoSolicitudPais;

    /**
     * @ORM\ManyToMany(targetEntity="\AppBundle\Entity\ModeloMarcaProducto", inversedBy="modeloMarcaProducto", cascade={"persist"})
     * @ORM\JoinTable(name="negocio.fabricante_modelo_marca_producto", schema="negocio",
     *      joinColumns={@ORM\JoinColumn(name="fabricante_producto_solicitud_id", referencedColumnName="id")},
     *      inverseJoinColumns={@ORM\JoinColumn(name="modelo_marca_producto_id", referencedColumnName="id")}
     * )
     */
    protected $modeloMarcaProducto;

    public function __construct()
    {
        $this->paisesFabricanteProductoSolicitudPais = new ArrayCollection();
        $this->modeloMarcaProducto = new ArrayCollection();
    }

    public function addModeloMarcaProducto(ModeloMarcaProducto $modeloMarcaProducto)
    {
        $this->modeloMarcaProducto[] = $modeloMarcaProducto;
    }

    public function removeModeloMarcaProducto(ModeloMarcaProducto $modeloMarcaProducto)
    {
        $this->modeloMarcaProducto->removeElement($modeloMarcaProducto);

        return $this;
    }    

    public function getModeloMarcaProducto()
    {
        return $this->modeloMarcaProducto;
    }
}

通过Ajax我发到处理多个值的方法的请求:

foreach ($request->request->get('items') as $item) {
    // delete row if it can be deleted 
}

在上面的代码中, $item['value']持有negocio.fabricante_modelo_marca_producto.fabricante_producto_solicitud_id值,这个概念是删除相关表(每行fabricante_modelo_marca_producto通过给予) fabricante_producto_solicitud_id ,可以在任何给我一些帮助吗?

编辑:找到最好的方法

试图找到我做了这段代码的最佳方法:

foreach ($request->request->get( 'items' ) as $item) {
    $relacion = $this->get( 'database_connection' )->fetchColumn(
        'SELECT COUNT(fabricante_producto_solicitud_id) AS cnt FROM negocio.fabricante_modelo_marca_producto WHERE fabricante_producto_solicitud_id = ?',
        array( $item['value'] )
    );

    if ($relacion === 0) {
        $entFabricanteProductoSolicitud = $em->getRepository(
            "AppBundle:FabricanteProductoSolicitud"
        )->find( $item['value'] );

        try {
            $em->remove( $entFabricanteProductoSolicitud );
            $em->flush();
            array_push( $itemsRemoved, $item['value'] );

            $response['success'] = true;
            $status              = 200;
        } catch ( \Exception $e ) {
            $status = 400;
            dump( $e->getMessage() );

            return new JsonResponse( $response, $status ?: 200 );
        }
    }

    $response['itemsRemoved'] = $itemsRemoved;
}

}

也许它有一些问题,因为我还没有写和删除它不是测试,但这样我可以知道哪些项目和哪些不是,对不对? 这是正确的方式?

Answer 1:

我会做这种方式:

首先,检索所有$fabricanteProductoSolicitud使用连接得到他们的$modeloMarcaProducto在一个查询:

其次,经过结果,并清除$modeloMarcaProducto持续的$fabricanteProductoSolicitud (这不是在给DB访问翻译,只是标志着实体删除了学说)。

第三,发送使用更改到DB flush

        $em = $this->getDoctrine()->getEntityManager();
        $qb = $em->createQueryBuilder();
        $ret = $qb
                ->select("u")
                ->from('MyBundle:FabricanteProductoSolicitud', 'u')
                ->join("u.modeloMarcaProducto","f")
                ->add('where', $qb->expr()->in('u.id', ':ids'))
                ->setParameter('ids',$request->request->get('items'))
                ->getQuery()
                ->getResult();

        foreach($ret as $fabricantePS) {
            $fabricantePS->getModeloMarcaProducto()->clear();
            $em->persist($fabricantePS);
        }

        $em->flush();

这应该删除从连接表的所有实体fabricante_producto_solicitud_id$request->request->get('items')



Answer 2:

你可以做这样,

在你的控制器阿贾克斯行动:

 foreach ($request->request->get('items') as $item) {
    $em = $this->getDoctrine()->getManager();
    $fabricanteProductoSolicitud = $em->getRepository('YourBundle:FabricanteProductoSolicitud')->find($item['value']);
    $modeloMarcaProductos = $fabricanteProductoSolicitud->getModeloMarcaProducto();
        foreach($modeloMarcaProductos as $modeloMarcaProducto)
        {
            //echo $modeloMarcaProducto->getId();
            $fabricanteProductoSolicitud->removeModeloMarcaProducto($modeloMarcaProducto);
            $em->flush();
        }
    }
 }
 // return response; or exit;

希望这对您有所帮助。

我不知道从其他用户更好的答案。



文章来源: Delete row from related entity in many to many relationship in Doctrine2