Doctrine Associations werden nicht aufgelöst

Hallo ich habe zwei Assicoations in meinen Models definiert Client { public function \_\_construct() { $this-\>abos = new ArrayCollection(); } protected $id; /\*\* \* @ORM\OneToMany( \* targetEntity="Shopware\CustomModels\Joe\Abo", \* mappedBy="client") \* @var \Doctrine\Common\Collections\ArrayCollection \*/ protected $abos = null; } Abo { /\*\* \* @ORM\ManyToOne( \* targetEntity="Shopware\CustomModels\Joe\Client", \* inversedBy="abos" \* ) \* @ORM\JoinColumn(name="clientId", referencedColumnName="id") \*/ protected $client; } Leider werden die Assiciations nicht aufgelöst, sprich es wird nichts in der Tabelle angelegt. Auch die entsprechenden getter Funktionen funktionieren nicht. Danke!