framework-web:symfony:models:crud

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
framework-web:symfony:models:crud [2018/02/05 11:04] – [Entity manager & Repository] jcheronframework-web:symfony:models:crud [2019/08/31 14:21] (Version actuelle) – modification externe 127.0.0.1
Ligne 16: Ligne 16:
 ==== Repository ==== ==== Repository ====
  
-<sxh php;title:src/Controller/ProductController.php> +<sxh php> 
-// ...+    $productRepository = $this->getDoctrine()->getRepository(Product::class); 
 +</sxh>
  
-/** 
- * @Route("/product/{id}", name="product_show") 
- */ 
-public function showAction($id) 
-{ 
-    $product = $this->getDoctrine() 
-        ->getRepository(Product::class) 
-        ->find($id); 
  
-    if (!$product) { +Pour une bonne séparation du code, il est conseillé de créer des classes Repository pour chacune des classes métier utilisées :
-        throw $this->createNotFoundException( +
-            'No product found for id '.$id +
-        ); +
-    }+
  
-    return new Response('Check out this great product'.$product->getName());+<sxh php;title:src/Entity/Repository/UserRepository.php> 
 +namespace App\Repository; 
 +//... 
 +class UserRepository extends ServiceEntityRepository { 
 + 
 + public function __construct(ManagerRegistry $registry
 + parent::__construct($registry, User::class); 
 +
 + 
 +//...
  
-    // or render a template 
-    // in the template, print things with {{ product.name }} 
-    // return $this->render('product/show.html.twig', ['product' => $product]); 
 } }
 </sxh> </sxh>
 +
 +Il est ensuite possible d'injecter ce Repository pour l'utiliser dans un contrôleur :
 +
 +<sxh php;title:src/Controller/UsersController.php>
 +class UsersController extends Controller{
 + /**
 + * @var UserRepository
 + */
 + private $repository;
 +
 + public function __construct(UserRepository $userRepo){
 + $this->repository=$userRepo;
 + }
 +}
 +</sxh>
 +
 +===== Read : chargement d'enregistrements =====
 +
 +Récupération du Repository :
 +<sxh php>
 +$repository = $this->getDoctrine()->getRepository(Product::class);
 +</sxh>
 +
 +Chargement d'une instance (par sa clé primaire, généralement 'id')
 +<sxh php>
 +$product = $repository->find($id);
 +</sxh>
 +
 +Chargement d'une instance sur critères variés :
 +<sxh php>
 +// query for a single Product by name
 +$product = $repository->findOneBy(['name' => 'Keyboard']);
 +// or find by name and price
 +$product = $repository->findOneBy([
 +    'name' => 'Keyboard',
 +    'price' => 19.99,
 +]);
 +</sxh>
 +
 +Chargement de plusieurs instances
 +
 +<sxh php>
 +// query for multiple Product objects matching the name, ordered by price
 +$products = $repository->findBy(
 +    ['name' => 'Keyboard'],
 +    ['price' => 'ASC']
 +);
 +
 +// find *all* Product objects
 +$products = $repository->findAll();
 +</sxh>
 +
  • framework-web/symfony/models/crud.1517825065.txt.gz
  • Dernière modification : il y a 6 ans
  • (modification externe)