我正在尝试创建一个简单示例,以便学习如何从父表中删除行,并使用Doctrine2自动删除子表中的匹配行。
以下是我正在使用的两个实体:
Child.php:
<?php
namespace Acme\CascadeBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="child")
*/
class Child {
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @ORM\ManyToOne(targetEntity="Father", cascade={"remove"})
*
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="father_id", referencedColumnName="id")
* })
*
* @var father
*/
private $father;
}
Father.php
<?php
namespace Acme\CascadeBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="father")
*/
class Father
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
}
在数据库上正确创建了表,但是没有创建On Delete Cascade选项。我做错了什么?
答案 0 :(得分:381)
Doctrine中有两种级联:
1)ORM级别 - 在关联中使用cascade={"remove"}
- 这是在UnitOfWork中完成的计算,不会影响数据库结构。删除对象时,UnitOfWork将遍历关联中的所有对象并将其删除。
2)数据库级别 - 在关联的joinColumn上使用onDelete="CASCADE"
- 这会将On Delete Cascade添加到数据库中的外键列:
@ORM\JoinColumn(name="father_id", referencedColumnName="id", onDelete="CASCADE")
我还想指出你现在拥有cascade = {“remove”}的方式,如果删除一个Child对象,这个级联将删除Parent对象。显然不是你想要的。
答案 1 :(得分:45)
这是一个简单的例子。联系人具有一对多的关联电话号码。删除联系人后,我想要所有关联的电话号码 也被删除,所以我使用ON DELETE CASCADE。通过phone_numbers中的外键实现一对多/多对一关系。
CREATE TABLE contacts
(contact_id BIGINT AUTO_INCREMENT NOT NULL,
name VARCHAR(75) NOT NULL,
PRIMARY KEY(contact_id)) ENGINE = InnoDB;
CREATE TABLE phone_numbers
(phone_id BIGINT AUTO_INCREMENT NOT NULL,
phone_number CHAR(10) NOT NULL,
contact_id BIGINT NOT NULL,
PRIMARY KEY(phone_id),
UNIQUE(phone_number)) ENGINE = InnoDB;
ALTER TABLE phone_numbers ADD FOREIGN KEY (contact_id) REFERENCES \
contacts(contact_id) ) ON DELETE CASCADE;
通过在外键约束中添加“ON DELETE CASCADE”,当相关联系人是联系人时,phone_numbers将自动删除 删除。
INSERT INTO table contacts(name) VALUES('Robert Smith');
INSERT INTO table phone_numbers(phone_number, contact_id) VALUES('8963333333', 1);
INSERT INTO table phone_numbers(phone_number, contact_id) VALUES('8964444444', 1);
现在删除联系人表格中的一行时,将自动删除所有关联的phone_numbers行。
DELETE TABLE contacts as c WHERE c.id=1; /* delete cascades to phone_numbers */
要在Doctrine中实现相同的功能,要获得相同的DB级别“ON DELETE CASCADE”行为,请使用@JoinColumn进行配置 onDelete =“CASCADE”选项。
<?php
namespace Entities;
use Doctrine\Common\Collections\ArrayCollection;
/**
* @Entity
* @Table(name="contacts")
*/
class Contact
{
/**
* @Id
* @Column(type="integer", name="contact_id")
* @GeneratedValue
*/
protected $id;
/**
* @Column(type="string", length="75", unique="true")
*/
protected $name;
/**
* @OneToMany(targetEntity="Phonenumber", mappedBy="contact")
*/
protected $phonenumbers;
public function __construct($name=null)
{
$this->phonenumbers = new ArrayCollection();
if (!is_null($name)) {
$this->name = $name;
}
}
public function getId()
{
return $this->id;
}
public function setName($name)
{
$this->name = $name;
}
public function addPhonenumber(Phonenumber $p)
{
if (!$this->phonenumbers->contains($p)) {
$this->phonenumbers[] = $p;
$p->setContact($this);
}
}
public function removePhonenumber(Phonenumber $p)
{
$this->phonenumbers->remove($p);
}
}
<?php
namespace Entities;
/**
* @Entity
* @Table(name="phonenumbers")
*/
class Phonenumber
{
/**
* @Id
* @Column(type="integer", name="phone_id")
* @GeneratedValue
*/
protected $id;
/**
* @Column(type="string", length="10", unique="true")
*/
protected $number;
/**
* @ManyToOne(targetEntity="Contact", inversedBy="phonenumbers")
* @JoinColumn(name="contact_id", referencedColumnName="contact_id", onDelete="CASCADE")
*/
protected $contact;
public function __construct($number=null)
{
if (!is_null($number)) {
$this->number = $number;
}
}
public function setPhonenumber($number)
{
$this->number = $number;
}
public function setContact(Contact $c)
{
$this->contact = $c;
}
}
?>
<?php
$em = \Doctrine\ORM\EntityManager::create($connectionOptions, $config);
$contact = new Contact("John Doe");
$phone1 = new Phonenumber("8173333333");
$phone2 = new Phonenumber("8174444444");
$em->persist($phone1);
$em->persist($phone2);
$contact->addPhonenumber($phone1);
$contact->addPhonenumber($phone2);
$em->persist($contact);
try {
$em->flush();
} catch(Exception $e) {
$m = $e->getMessage();
echo $m . "<br />\n";
}
如果你现在这样做
# doctrine orm:schema-tool:create --dump-sql
您将看到将生成与第一个原始SQL示例
中相同的SQL答案 2 :(得分:0)
虽然在级联上删除的正确方法是使用 @Michael Ridgway 答案,但也有可能通过听教义事件来做同样的事情。
为什么?好吧,在删除父实体时,您可能想要做其他事情,可能在某些实体上使用软删除或对其他实体进行硬删除。您也可以将他的孩子重新影响到另一个实体,以防您想保留它并将其影响到父实体等...
所以这样做的方法是听doctrine event preRemove。
<块引用>preRemove - preRemove 事件发生在给定实体之前 执行该实体的相应 EntityManager 删除操作。 DQL DELETE 语句不会调用它。
请注意,只有在使用 ->remove
时才会调用此事件。
首先创建您的事件订阅者/侦听器以收听此事件:
<?php
namespace App\EventSubscriber;
use Doctrine\Common\EventSubscriber;
use App\Repository\FatherRepository;
use Doctrine\Persistence\Event\LifecycleEventArgs;
use App\Entity\Father;
use App\Entity\Child;
class DoctrineSubscriber implements EventSubscriber
{
private $fatherRepository;
public function __construct(FatherRepository $fatherRepository)
{
$this->fatherRepository = $fatherRepository;
}
public function getSubscribedEvents(): array
{
return [
Events::preRemove => 'preRemove',
];
}
public function preRemove(LifecycleEventArgs $args)
{
$entity = $args->getObject();
if ($entity instanceof Father) {
//Custom code to handle children, for example reaffecting to another father:
$childs = $entity->getChildren();
foreach($childs as $child){
$otherFather = $this->fatherRepository->getOtherFather();
child->setFather($otherFather);
}
}
}
}
并且不要忘记将此 EventSubscriber 添加到您的 services.yaml
App\EventSubscriber\DoctrineSubscriber:
tags:
- { name: doctrine.event_subscriber }
在这个例子中,父亲仍然会被删除,但孩子们不会因为有了一个新父亲。例如,如果实体 Father
添加其他家庭成员,我们可以将孩子重新影响到家庭中的其他人。