I keep getting this error:
/* ... */ $em = $this->getDoctrine()->getEntityManager(); $movie = $em->getRepository(\'MyMyBundle:Movie\')-&
Nevermind, I found the answer: echo $movie[0]->getId(); (the repository returned an array of objects). Sorry, sometimes you lose sight of the wood for the trees.
echo $movie[0]->getId();