Answer the question
In order to leave comments, you need to log in
Why is the record in the database not updated?
I can not understand why the data in the database from the form is not updated.
$em = $this->getDoctrine()->getManager();
$vote = $em->getRepository('ACVoteVotesBundle:Votes')->findById($id);
$form = $this->createForm(new addVoteInfoType(), $vote);
$form->handleRequest($request);
$em->flush();
Answer the question
In order to leave comments, you need to log in
The findBy* method returns an array.
Use findOneBy* or find($id) in the current case.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question