Symfony2 Entity Form Type gets data from another Entity
问题 I have 2 entities: Audio and Destination In Audio: /** * @ORM\OneToOne(targetEntity="HearWeGo\HearWeGoBundle\Entity\Destination", inversedBy="audio") * @Assert\NotBlank(message="This field must be filled") * */ private $destination; I created a Form Type name EditAudioType used to edit an audio whose uploaded link is stored in database <?php namespace HearWeGo\HearWeGoBundle\Form; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component