P
(PeteCresswell)
I've got
tblDeal ==> tblTrustee ==> tblTrusteeContact
Each deal can have one and only one trustee.
Each trustee can have many contacts.
VIZ: http://tinyurl.com/2rzosd
User wants to be able to assign a single (one and only one....) trustee contact
to a given tblDeal row.
My kneejerk is to just add a new field: tblDeal.TrusteeContactID and enforce
the relationship to tlkpTrustee programmatically.
But somehow this doesn't sound like the good-right-and-holy path to me.
Can anybody suggest a solution that is technically more defensible in the
context of good database design.
tblDeal ==> tblTrustee ==> tblTrusteeContact
Each deal can have one and only one trustee.
Each trustee can have many contacts.
VIZ: http://tinyurl.com/2rzosd
User wants to be able to assign a single (one and only one....) trustee contact
to a given tblDeal row.
My kneejerk is to just add a new field: tblDeal.TrusteeContactID and enforce
the relationship to tlkpTrustee programmatically.
But somehow this doesn't sound like the good-right-and-holy path to me.
Can anybody suggest a solution that is technically more defensible in the
context of good database design.