📜  entitymanager 获取存储库 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:35.001000             🧑  作者: Mango

代码示例1
$em = $this->getDoctrine();
// EntityName prend le nom de votre entité 

//Exemple avec notre entité Product
$repository = $this->getDoctrine()->getRepository(Product::class);