我已經從ContainerAwareCommand擴展了我的類。 我有執行功能,我想執行查詢。 這是我的$ em和$ $ repo的執行函數。使用ContainerAwareCommand執行查詢原則
protected function execute(InputInterface $input, OutputInterface $output){
$em = $this->getContainer()->get('doctrine')->getEntityManager();
$repo = $em->getRepository('SshBundle:Cinema');
我該如何執行查詢? 謝謝。