framework-web:symfony:models:crud

Ceci est une ancienne révision du document !


Opérations CRUD

Récupération de l'entity manager doctrine dans un contrôleur :

        // you can fetch the EntityManager via $this->getDoctrine()
        // or you can add an argument to your action: index(EntityManagerInterface $em)
        $em = $this->getDoctrine()->getManager();

Comme indiqué, l'entity manager peut aussi être injecté.

    $productRepository = $this->getDoctrine()->getRepository(Product::class);

  • framework-web/symfony/models/crud.1517825113.txt.gz
  • Dernière modification : il y a 6 ans
  • (modification externe)