1、Controller类中调用
~~~
$em = $this->getDoctrine()->getManager();
~~~
~~~
$em = $this->getEntityManager();
~~~
~~~
$em = $this->get("doctrine.orm.entity_manager");
~~~
2、非Controller类中调用
~~~
services:
service_id:
class: ×××
calls:
- { entityManager, [ @doctrine.orm.entity_manager ] }
~~~
~~~
private $em;
public function entityManager($entityManager){
$this->em = $entityManager;
}
~~~
- 安装
- 配置
- web服务器
- DependencyInjection
- Serializer
- Ajax
- Annotation
- Controller
- Entity
- Components【组件】
- HttpFoundation【HTTP处理】
- Routing【路由处理】
- Form【表单处理】
- Validator【验证处理】
- ClassLoader【类加载】
- Templating【模板】
- Security【处理安全问题】
- Translation【语言翻译】
- Bundles【功能包】
- Doctrine
- entityManager
- entityRespository
- createQueryBuilder
- createNativeQuery
- find
- DoctrineBundle
- doctrine_config
- DoctrineFixturesBundle
- KnpMenuBundle
- KnpPaginatorBundle
- FOSUserBundle
- FOSRestBundle
- FOSCommentBundle
- FOSElasticaBundle
- SonataCoreBundle
- SonataBlockBundle
- SonataMediaBundle
- SonataAdminBundle
- DoctrineORMAdminBundle
- Sonata
- Install_Sonata
- Config_Sonata
- BlockService
- Custom_BlockService
- Custom_Admin
- Problems