I\'m scratching my head; I have a Car table and a Customer table that have a many-to-many relationship. In this relationship table I want to add a column that can tell me wh
Make the relationship an entity:
class CarRelation { Car Car {get; set; } RelationType Type {get; set;} }
A pure many-to-many relation doesn't have any additional properties.