Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Is this a 2.0 or 2.1 question? Plenty of changes in the form component. – Maerlyn Jul 31 '12 at 14:31
This is a Symfony 2.1 question :-) – Tom Jul 31 '12 at 15:20

1 Answer

up vote 1 down vote accepted

Each form can be described as a service in service container so you can specify any dependencies from any other services. I would say it's a good idea to encapsulate queries inside repository/usermanager instead of using them inline. Ihmo symfony version does not matter in this case.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.