我要疯了.
这是父母:
class Parent {
/**
* @Id
* @GeneratedValue
* @Column(type="integer")
*/
protected $id;
/**
* @OneToMany(targetEntity="Core\Parent\Child", mappedBy="parent", cascade={"persist", "remove"})
*/
protected $children;
public function __construct() {
$this->children = new \Doctrine\Common\Collections\ArrayCollection();
}
public function getChildren() {
return $this->children->toArray();
}
public function removeAllChildren() {
$this->children->clear();
}
public function addChild($child) {
$this->children->add($child);
}
}
这是孩子:
class Child {
/**
* @Id
* @GeneratedValue
* @Column(type="integer")
*/
protected $id;
/**
* @ManyToOne(targetEntity="Core\Parent", inversedBy="children")
* @JoinColumn(name="parent_id", referencedColumnName="id")
*/
protected $parent;
}
对我来说不起作用的是删除这个父母的所有现有孩子.从我的控制器,我做:
$parent = $em->getRepository('Core\Parent')->find(1);
$parent->removeAllChildren();
此时,我可以调用getChildren()并且它是空的.在我的脚本退出之前,我也做了:$em-> flush();
但是,我检查数据库表,数据仍然存在!我没理解,这让我疯了.如何删除此父级的所有现有子级?