I get the error
The DELETE statement conflicted with the REFERENCE constraint FK_DocYDocument1 - table DocYDocument, column SubDocID - Statement: DELETE FROM DOCUMENT WHERE (ID=?) Parameter: 'D7FAA3CF...'
Table DocYDocument has columns
PK ID, FK DocID and FK SubDocID.
And the keys PK_DocYDocument, FK_DocYDocument and FK_DocYDocument1.
FK_DocYDocument1 foreign key column is SubDocID and FK_DocYDocument foreign key column is DocID.
Is there a problem with database design or do I've to look for the error in the program?