I have the following tables:
Task {TaskID}
People {TaskID, PersonID, IsBuyer}
Person {PersonID}
The people itermediary table is used because the same person can be assigned to the same task multiple times.
Is there a way I can set up my Task entity to have two collection properties, Buyers and Sellers, instead of having to go through the People entity?
I'm not a real DBA, I just play one on TV.