I am using Entity Framework 4. I have a many-to-many association (relationship) between two entities:
- Account
- Subscription
The relationship is therefore: AccountSubscription. So an account (over time) can have many subscriptions and, obviously, a particular Subscription type can be held by many Accounts at once.
I want to add properties to this relationship (e.g. StartDate, EndDate, PaymentStatus). I can't see a way in Entity to add properties to an Association table. What is the best way to represent this using Entity?