Let\'s say I have entity $e. Is there any generic way to store it as another row, which would have the same entity data but another primary key?
$e
Why I n
Here's a simple strategy I used that doesn't involve excessive complexity:
$new->fromArray( $old->toArray() ); $new->id = NULL;