我正在使用Doctrine在Symfony2中创建一些Fixtures
。我收到以下错误:
Integrity constraint violation: 1062 Duplicate entry '206-411' for key 'PRIMARY'
当我尝试坚持多对多的单向关联时
我理解错误,但我很困惑:一些ID在多对多关系中是不是很复杂?
如果我错了请纠正我。我把我的代码放在下面,欢迎任何澄清。
灯具文件:
namespace sociaLecomps\SuperBundle\DataFixtures\ORM;
use Doctrine\Common\DataFixtures\AbstractFixture;
use Doctrine\Common\DataFixtures\OrderedFixtureInterface;
use Doctrine\Common\Persistence\ObjectManager;
use Doctrine\ORM\Query;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class LoadAssociationsData extends AbstractFixture implements OrderedFixtureInterface, ContainerAwareInterface
{
private $container;
public function setContainer(ContainerInterface $container = null){
$this->container = $container;
}
public function load(ObjectManager $manager)
{
$em = $this->container->get('doctrine')->getManager('default');
/*
* COURSE - STUDENT ASSOCIATION
*/
$courses = $em->createQuery('SELECT c FROM sociaLecompsSuperBundle:Course c')->getResult();
$students = $em->createQuery('SELECT s FROM sociaLecompsSuperBundle:Student s')->getResult();
$i=0;
for($j=0; $j<count($courses); $j++){
$course = $courses[$j];
//here I'm adding two different students to the same course
$s = array($students[$i], $students[$i++]);
$course->setSubscribedStudents($s);
$em->persist($course);
$i++;
}
$manager->flush();
}
}
课程类中的关系声明:
/**
* @ORM\ManyToMany(targetEntity="Student")
* @ORM\JoinTable(name="relation_course_student",
* joinColumns={@ORM\JoinColumn(name="course_id", referencedColumnName="id")},
* inverseJoinColumns={@ORM\JoinColumn(name="student_id", referencedColumnName="id")}
* )
**/
private $subscribed_students;
public function __construct() {
$this->subscribed_students = new ArrayCollection();
}
在尝试创建关联之前,还会使用Fixtures
创建实体学生和课程
如果我尝试每门课程只插入一名学生,那么一切顺利。
答案 0 :(得分:2)
我看到您的课程实体已经存在,因为您直接从数据库($courses = $em->createQuery('SELECT c FROM sociaLecompsSuperBundle:Course c')->getResult();
)获取它们。所以你不应该试图第二次坚持实体。我建议您以这种方式使用merge()
:
$em->merge($course);
注1:
我看到你在这里使用了Doctrine装置,并且已经创建了学生和课程。如果它们是通过Doctrine fixture创建的,那么考虑使用addReference
和getReference
方法。示例:https://github.com/doctrine/data-fixtures/blob/master/README.md#sharing-objects-between-fixtures
注2:此外,您的subscribed_students
关联中未设置级联选项。由于学生已经存在不应该是一个问题。否则,您可以设置级联选项,也可以在学生实体上运行merge
| persist
。
答案 1 :(得分:1)
这是最愚蠢的事情。
我替换了$s = array($students[$i], $students[$i++]);
与$s = array($students[$i], $students[++$i]);
。
由于它是后增量,第二次插入尝试将同一个学生放入数据库,因此会产生精确的行重复。
希望这有助于某人。