I'm trying to relate a Product
object to a Category
... but it's
not working. What's wrong with my code?
$category = new Category();
// ...
$product->setCategory($category->getId());
$entityManager->persist($product);
$entityManager->persist($category);
$entityManager->flush();