Skip to content

Instantly share code, notes, and snippets.

@bpicolo
Created February 2, 2016 18:16
Show Gist options
  • Save bpicolo/b56f69d13837d26ab44c to your computer and use it in GitHub Desktop.
Save bpicolo/b56f69d13837d26ab44c to your computer and use it in GitHub Desktop.
$entity = new Entities\Foo();
$entity->setField('foo');
$em->persist($entity);
$em->flush();
...
...
$entity->setField('bar');
$em->getRepository('Entities\Foo')->find(the_id)->getField() // foo
:(
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment