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.