Inheritance issue

0
I have an entity which is a specialization from File-document and I want to apply auditing on it , so I need to make it specialization from Audit-Trail-SuperClass and as we know there is no multible inheritance , So is there any suggestion other than to divide my entity into 2 entities, where one of them is a specialization from File-document and it will have an association with the second entity which will be a specialization from Audit-Trail-SuperClass.
asked
1 answers
3

No, I believe you have to do exactly what you asked. Add another entity and create the 1 to 1 relationship.

answered