We can easily custom the powerful Symfony2 form component with an entity Field Type
use Doctrine\ORM\EntityRepository;
// ...
$builder->add('users', 'entity', array(
'class' => 'AcmeHelloBundle:User',
'query_builder' => function(EntityRepository $er) {
return $er->createQueryBuilder('u')
->orderBy('u.username', 'ASC');
},
));
Is there a way to inject a method using a custom Entitymanager (UserManager in this case) instead? I am thinking that in the case of long queries, it might be interesting to have the option to use custom methods from an EntityManager instead?