2

我有一个名为 的父类Notification,它有CommentNotification一个子类(类表继承)。

/**
 * This entity represents the notifications that are sent to users when an event happens
 * @ORM\Entity(repositoryClass="AppBundle\Repository\NotificationRepository")
 * @ORM\InheritanceType("JOINED")
 * @ORM\DiscriminatorColumn(name="type", type="string")
 * @ORM\DiscriminatorMap({
 *     "yp" = "YpNotification",
 *     "default" = "Notification",
 *     "comment" = "CommentNotification",
 *     "post" = "PostNotification"})
 * @ORM\Table(name="notification")
 */
class Notification
{
    /**
     * The identifier of this notification
     * @ORM\Column(type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="AUTO")
     * @var int $id
     */
    protected $id;
}

CommentNotification中,我已包含onDelete = "CASCADE",因此当评论被删除时,附加到它的通知也会被删除。

/**
     * @ORM\Entity
     * @ORM\Table(name="comment_notification")
     * @ORM\Entity(repositoryClass="AppBundle\Entity\Notifications\CommentNotificationRepository")
     */  
class CommentNotification extends Notification
        {

            /**
             *
             * @ORM\ManyToOne(targetEntity="AppBundle\Entity\ContentItem\ContentItemComment")
             * @ORM\JoinColumn(name="comment_id", referencedColumnName="id", onDelete="CASCADE", nullable=false)
             */
            private $comment;
    ...
}

根据要求,我也显示 ContentItemComment。这不包含与 CommentNotification 的双向关系。

/**
     * 
     * @ORM\Table(name="content_item_comment")
     * @ORM\Entity(repositoryClass="AppBundle\Entity\ContentItem\ContentItemCommentRepository")
     */
    class ContentItemComment
    {
        /**
         * @ORM\Column(type="integer")
         * @ORM\Id
         * @ORM\GeneratedValue(strategy="AUTO")
         */
        protected $id;
...
}

但是,它成功删除了 in 中的行comment_notification,但 in 中的行notification仍然存在,在通知表中留下了我每次都必须手动删除的幽灵记录。

Fe 这个查询每天都会返回一些新的结果:

SELECT * FROM `notification` n WHERE n.id not in (select id from comment_notification) and n.type='comment' 

我错过了注释Notification吗?

4

2 回答 2

2

Doctrine 网站上有以下注释:

当您不使用 SchemaTool 生成所需的 SQL 时,您应该知道删除类表继承会在所有数据库实现中使用外键属性 ON DELETE CASCADE。自己未能实现这一点将导致数据库中出现死行。

这是可能的原因吗?

于 2020-04-08T22:54:27.817 回答
1

所以正如评论中提到的那样 - 如果它是双向关系 - 您需要orphanRemoval=true为相关OneToMany属性添加选项。

于 2020-05-10T14:20:57.067 回答