我在 M:N 关系中有 AEntity 和 BEntity。
在数据库中,我有 ATable、BTable、ABRelationTable。
ABRelationTable 构建如下
Id Guid
ATableId Guid
BTableId Guid
AdditionalAttribute1 String
AdditionalAttribute2 String
然后我删除 EntityFramework 中的 AEntityInstance 并
引发异常,然后它违反了 ABRelationTable 中的 FK
如下:
The DELETE statement conflicted with the REFERENCE constraint "FK_AB_A".
The conflict occurred in database "X", table "ABRelationTable", column
'Id'.The statement has been terminated.
如何删除关系表中的对应行