嗨,我想使用以下代码克隆实体记录。
$em = $this->getDoctrine()->getManager();
/* @var $student Student */
$student = $this->getDoctrine()-
>getRepository('MyBundle:Student')->find($studentId);
$studentClone = clone $student;
$em->persist($studentClone);
$em->flush();
但是它给我抛出了一个错误。
SQLSTATE [23000]:违反完整性约束:1062键'PRIMARY'的重复条目'20'
我为此尝试了许多解决方案,但没有任何效果,请协助任何人。
预先感谢