Storing additional Set(s) of information for a many-to-many relationship using ASP.NET MVC
问题 Storing additional information for a Many-to-Many relationship I have the following two entities in a many-to-many relationship with the following model - Disease public class Disease { public Disease() { this.Indications = new HashSet<App.Models.Indication.Indication>(); this.LaboratoryParameters = new HashSet<App.Models.LaboratoryParameter.LaboratoryParameter>(); this.Medicines = new HashSet<App.Models.Medicines.Medicine>(); } [Key] [DatabaseGeneratedAttribute(DatabaseGeneratedOption