Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am getting the error Unknown Entity namespace alias 'DummyUserBundle' when using a custom entity field in a Symfony2 form type. I really don't figure out what the reason is. The error only occurs if I am trying to customize the field.

This fails:

<?php
namespace Dummy\Bundle\TasksBundle\Form\Type;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Doctrine\ORM\EntityRepository;

class TaskType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder->add('assigned', 'entity', array(
            'class' => 'DummyUserBundle:User',
            'label' => 'My own label',
            //custom query builder coming here once I get this working
        ));
    }
}

This however works:

public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder->add('assigned');
}

In my config.yml I have auto_mapping: true.

Any suggestions?

share|improve this question
1  
Just use Dummy\UserBundle\Entity\User – AdrienBrault Dec 30 '12 at 11:01
Works, thanks! Is this the way it is designed? Do namespace aliases only work within they same bundle? – sprain Dec 30 '12 at 11:08
1  
This fails since Symfony2.1, not sure why. – Gmajoulet Dec 30 '12 at 11:52

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.