Error deleting a table row splitted on multiple entities

前端 未结 6 1002
耶瑟儿~
耶瑟儿~ 2021-01-06 05:18

I want to delete a table row that is split on two entities.

If I try to delete the main entity, I get an error if before I don\'t load the related other entity using

6条回答
  •  遥遥无期
    2021-01-06 05:45

    Try to add Cascade Delete rule to the model. You MUST have a corresponding DELETE rule in the database to avoid loading of the dependents into memory as noted here.

提交回复
热议问题