Persistieren einer Assoziation

Ich habe gemäß Bundle-Tutorial eine Assoziation aufgebaut, und versuche nun meinem Entity die Assoziation mitzugeben:

 

/** @var EntityRepositoryInterface $productsRepository */ $productsRepository = $container->get(ProductDefinition::ENTITY_NAME . ‚.repository‘); $products = $productsRepository->search( (new Criteria())->addFilter(new ContainsFilter(‚name‘, ‚ProteX‘)), Context::createDefaultContext() ); /** * @var ProductEntity $firstProduct */ $firstProduct = $products->first(); ///////////////////////////////////////////// $myEntity->setProducts($products->getEntities());

 

Wenn ich nun sofort $myEntity->getProducts() aufrufe, sehe ich die Daten. In der Datenbanktabelle acme_myentity_product kommt aber nichts an. Muss ich etwas persistieren/flushen? 

 

Danke