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:22] – [Read : chargement d'enregistrements] jcheronframework-web:symfony:models:crud [2019/08/31 14:21] (Version actuelle) – modification externe 127.0.0.1
Ligne 54: Ligne 54:
 ===== Read : chargement d'enregistrements ===== ===== Read : chargement d'enregistrements =====
  
 +Récupération du Repository :
 <sxh php> <sxh php>
 $repository = $this->getDoctrine()->getRepository(Product::class); $repository = $this->getDoctrine()->getRepository(Product::class);
 +</sxh>
  
-// query for a single Product by its primary key (usually "id")+Chargement d'une instance (par sa clé primaire, généralement 'id') 
 +<sxh php>
 $product = $repository->find($id); $product = $repository->find($id);
 +</sxh>
  
 +Chargement d'une instance sur critères variés :
 +<sxh php>
 // query for a single Product by name // query for a single Product by name
 $product = $repository->findOneBy(['name' => 'Keyboard']); $product = $repository->findOneBy(['name' => 'Keyboard']);
Ligne 67: Ligne 73:
     'price' => 19.99,     'price' => 19.99,
 ]); ]);
 +</sxh>
  
 +Chargement de plusieurs instances
 +
 +<sxh php>
 // query for multiple Product objects matching the name, ordered by price // query for multiple Product objects matching the name, ordered by price
 $products = $repository->findBy( $products = $repository->findBy(
  • framework-web/symfony/models/crud.1517826137.txt.gz
  • Dernière modification : il y a 6 ans
  • (modification externe)