2016-11-24 87 views
1

我是一個初學者與奏鳴曲,我不明白我怎麼能choicetype在一對多(下拉列表)與2表Oraganizations(一)和structures_type(許多)。
我在奏鳴曲文件中找不到任何東西。我使用了奏鳴曲2.3和symfony 2.8。
如果有人可以幫我解決這個問題。這裏是代碼:索納塔一對多關係

protected function configureFormFields(FormMapper $formMapper) 
{ 
    $formMapper 
      ->add('structurestypes', EntityType::class, array(
       'class' => 'HandissimoBundle:StucturesTypes', 
       'choice_label' => 'structurestype', 
       'label' => 'Type de structure', 
       'expanded' => true, 
       'multiple' => true, 
       'by_reference' => true 
      )); 
} 

回答