Buenas.
Tengo una tabla que solo tiene Iso y descripción... intento con doctrine guardar un registro pero me guarda solo la descripción y me genera este error.
Entities passed to the choice field must be managed. Maybe persist them in the entity manager?
Lo estoy guardando asi:
Código PHP:
if ($form->isValid()) {
$tabla->setIso($form["iso"]->getData());
$em->persist($tabla);
$em->flush();
}
Como soluciono este inconveniente? gracias.