I’m using Doctrine for database abstraction. Now I’d like to get the auto_increment primary key from the freshly-created (and save()‘d) object – but $obj->toArray() shows me that the field is empty after calling save().
Is there a flag that I’m not aware of that does this? Or do I really have to query the object from the database?
Ensure that you have the autoincrement flag set when setting up your object in the
setTableDefinition()method (or related YAML config file). If this flag isn’t set, then Doctrine won’t know to update it. You should have something that looks like this: