嗯..我有一个简单的实体,并试图从中获取所有记录:
$em = $this->getDoctrine()->getManager();
$news = $em->getRepository('AppBundle:Article')->findAll();
var_dump($news); exit;
但它给我的回复非常大,请查看图片:
当我尝试使用这段代码时,它会在数组中返回正确的记录,但为什么findAll不能正常工作,它适用于其他实体?
$news = $this->getDoctrine()
->getRepository('AppBundle:Article')
->createQueryBuilder('e')
->select('e')
->getQuery()
->getResult(\Doctrine\ORM\Query::HYDRATE_ARRAY);