Hey, I'm trying to wrap my head around how to map the following relationship:
We have 3 tables.
Group:
Column ID
many other columns .....
Column FK_inventory_profile -> forign key to inventory profile.
Inventory_profile
Colum ID
Column name
Account_type
Column ID
Column name
Column FK_inventory_profile -> forign key to inventory profile.
Now on the object side, I have a Group object, that I want to have a Set containing all the names of the Account_types it is associated with.
All the documentation I can find assumes that Inventory_profile should have columns inside to to provide FK links to Group, and Account_type instead of vica-versa. Any help would be apreciated
- Luke
|