Associating based on Association

0
Hello Everyone,    I have a situation where There is Entity A and Entity B which has many to many with dual Ownership . Now I have a Entity C which needs to be Associated from  A , B as many to one  . Now Entity C needs to be also associated with every combination of AB  as every combination AB can have a unique value in C .  Do I need to introduce one more entity to map ABC together ?
asked
2 answers
1

Hey Naresh,

I think you need to create an AB join entity between A and B and then associate it to entity C

answered
1

Yes, you do. Otherwise, you will not be able to distinct the different combinations of A and B

answered