I've got three tables as the following example:
Table A
- ID (PK)
- ID_B
- ID_C
- Description
Table B
- ID (PK)
- Description
Table C
- ID (PK)
- Description
The ID's from Table A are not mapped as Foreign Key, but they are (And I Can't change that), how can I map them in only one entity?
I tried SecondaryTable but it request me to use the PK of the Table A with the PK of Table B, I tried to reference another field of the table but I wasn't able to do it.
Anybody can help me?
Thanks in Advance!