瀏覽代碼

When deleint a question score the questionScoreNames will be deleted (Thanks to the cascade option)

Julio Montoya 11 年之前
父節點
當前提交
3a032b4bd8
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      main/inc/Entity/QuestionScore.php

+ 3 - 1
main/inc/Entity/QuestionScore.php

@@ -23,7 +23,9 @@ class QuestionScore
     private $name;
 
     /**
-     * @ORM\OneToMany(targetEntity="QuestionScoreName", mappedBy="questionScore")
+     * cascade options remove: Cascades remove operations to the associated entities.
+     *                 detach: Cascades detach operations to the associated entities.
+     * @ORM\OneToMany(targetEntity="QuestionScoreName", mappedBy="questionScore", cascade={"persist", "remove"} )
      */
     private $items;