just getting started with Doctrine 2 and have a newbie question regarding inserting an entity which has associations. If I already have the FK's of the associated entities, is there a way to insert the primary entity into the db with just the FK's populated, or do I always have to retrieve the associated entities via the FK's, populate the primary entity's properties referring to the assocations, and then invoke the persist method.
feedback
|
|
You want a reference proxy Let's say I have Posts and Tags. A Post hasMany Tags. I get a bunch of tags from the user, who checked a bunch of checkboxes. The following would add tags to an existing post, without fetching each tag entity first. It does this by using reference proxies, generated by EntityManager::getReference():
| |||||||||
feedback
|
|
In regards to using a reference proxy Yes, you do not have to pro-actively retrieve the related record (because you create a proxy record), but when you flush (commit) the update transaction it still first executes a select statement to retrieve the related record, and then only does the update (all in one hit to the db). So while not a complete solution, what you do gain is only a single connection to the database (which is good) and slightly simplified code. I am not sure if there is a solution to this at the moment...?? | |||
|
feedback
|
|
You should retrieve the entity to be related and the make the relationship. I assume you could manually specify the relationship by directly accessing the database through the DBAL layer but I wouldn't not recommend this, nor have I tried it. | |||||||
feedback
|