有没有办法利用Sonata的Datagrid功能来显示结果集?
class DefaultController extends Controller
{
public function nl_listAction()
{
$obj = array();
$cnx = $this->get('doctrine.dbal.a_connection');
$cnx->query('CALL(a_procedure)');
$obj['cnx'] = $cnx;
return $this->render('GlideConfigBundle:Default:nl_list.html.twig', $obj);
}
}
这里是一个控制器,我正在调用一个过程,我想使用Datagrid显示结果数据 这是个好主意吗? 我该怎么办?