mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
DDC-935: copy function needs implementation #1160
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Dec 15, 2010).
Originally assigned to: @Majkl578 on GitHub.
Jira issue originally created by user jackvangalen:
The (deep)copy function of the entity manager is not yet implemented. I assume this is known, but I could not find any open issue on it. This is a pretty powerfull feature once implemented. The function body is completely empty however. Perhaps the tried code could be added so I and others could try and resolve the known issue with this function (recursion limit reached).
@doctrinebot commented on GitHub (Dec 15, 2010):
Comment created by @beberlei:
There was never code written for that function. I don't think its too problematic that this is missing. You only have to implement **clone (and do so safely as the docs/cookbook describes) and then pass this structure to persist. Optionally making use of cascade persist.
@doctrinebot commented on GitHub (Jan 1, 2011):
Comment created by mstoehr:
I recently came accross this. Is there any best practice if you have to clone an entity who has several associations? I thought of grabbing them and clone them one by one. Or is there a more convenient way?
@doctrinebot commented on GitHub (Jan 2, 2011):
Comment created by @beberlei:
no, except implementing **clone and doing it there.
@beberlei commented on GitHub (Dec 6, 2015):
@Ocramius Btw what we discussed on SymfonyCon might actually be removing merge and implementing copy instead.
@Majkl578 commented on GitHub (Dec 20, 2017):
Merge/detach and copy operations are going to be removed in Doctrine 3.0.