Hello,
I have 3 tables: A, B and C. Table A is in relation (n:1) with B and with C. Typically I store in A the B.Id (or the C.Id) and the table name.
e.g.
A.ParentId = 1 A.TableName = "B"
A.ParentId = 1 A.TableName = "C"
A.ParentId = 2 A.TableName = "B"
Is it a good solution? Are there any other solutions?
Thanks in advance