如何做到这一点:
$formMapper->add('propertyA.propertyB');
何时
$this->propertyA->propertyB;
/**
* @ORM\ManyToOne(targetEntity="propertyB")
*/
protected $propertyA;
$ propertyA依赖于实体A
$ propertyB依赖于实体B
答案 0 :(得分:1)
就这样做
->add('name', 'text', array('property_path' => 'propertyA.propertyB', 'required' => false))