如何将两个表之间的多对多关系关联数据?

时间:2019-08-03 19:52:26

标签: asp.net-mvc entity-framework

我有两个这样的表:

scopeKey

在表public partial class Major { public int Id { get; set; } [Required] public string Name { get; set; } public ICollection<Salon> Salons { get; set; } } public class Salon { public int Id { set; get; } public string Title { set; get; } public ICollection<Salon> Salons { get; set; } } 中,我有这样的数据:

Major

而我的问题是,当我向Id Name ----------------- 1 basketball 2 vollyball 表中添加一条包含Salonbasketball相关数据的新记录时;这两个记录已经存在时,它们已作为新记录添加到volleyball表中。

0 个答案:

没有答案