Update Doctrine - PHP
Get "entity manager"
$em = $this->getDoctrine()->getEntityManager();
select the entity to update ByID
$user = $em->getRepository('Entity\User')->find($id);
update the value:
$user->setName('Isaac Limón');
Save:
$em->persist($user);
$em->flush();
Written by Isaac Limon G.
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Php
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#