1、$rsm
~~~
$rsm = new ResultSetMapping();
# $rsm->addScalarResult($columnName, $alias, type="string");
$rsm->addScalarResult('name', 'name');
$rsm->addScalarResult('password', 'password');
~~~
2、$sql
~~~
$sql = "SELECT t.name t.password FROM table t where t.id < 100 GROUP BY t.role";
~~~
3、$query
~~~
$query = $em->createNativeQuery($sql, $rsm);
~~~
4、$qr
~~~
$qr = $query->getResult();
~~~
- 安装
- 配置
- 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