Flag of Ukraine
SymfonyCasts stands united with the people of Ukraine
Next Chapter

Challenge #2 of 2


Q: 

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();

userVoice