Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to update an entity in a simular way as below:

$data = new ATest(); // ATest is my entitity class
$data->id = 1; // id 1 already exists in the database, I just want to update this row
$data->name = "ORM Tested"; // just change the name

$entityManager->persist($data);
$entityManager->flush();   

This will insert and change the id of the object instead of updating the existing row in the database.

share|improve this question

3 Answers

up vote 18 down vote accepted

I had to use

$entityManager->merge($data)
share|improve this answer
1  
Take a note that you should copy it back into $data. ie: $data = $entityManager->merge($data) – Reza Sanaie Feb 11 at 22:46

To be clear... you must call merge instead of persist:

$data = new MyEntity();
$data->setId(123);
$data->setName('test');

$entityManager->merge($data);
$entityManager->flush();
share|improve this answer

Or just get the managed entity rather than an empty one.

$data = $entityManager->getRepository('ATest')->findOne(1); // ATest is my entitity class
$data->name = "ORM Tested"; // just change the name

$entityManager->persist($data);
$entityManager->flush();

If the entity is already managed, persist() will update it rather than insert a new one.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.