Différences
Ci-dessous, les différences entre deux révisions de la page.
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] – jcheron | framework-web:symfony:models:crud [2019/08/31 14:21] (Version actuelle) – modification externe 127.0.0.1 | ||
---|---|---|---|
Ligne 52: | Ligne 52: | ||
</ | </ | ||
- | ==== Read : chargement d' | + | ===== Read : chargement d' |
+ | Récupération du Repository : | ||
<sxh php> | <sxh php> | ||
$repository = $this-> | $repository = $this-> | ||
+ | </ | ||
- | // query for a single Product by its primary key (usually "id") | + | Chargement d'une instance |
+ | <sxh php> | ||
$product = $repository-> | $product = $repository-> | ||
+ | </ | ||
+ | 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-> | $product = $repository-> | ||
Ligne 67: | Ligne 73: | ||
' | ' | ||
]); | ]); | ||
+ | </ | ||
+ | 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-> | $products = $repository-> |