我最近一直在尝试使用 ef core,但是在 ef core 中的多对多关系中有些东西令人困惑。
public class Location
{
public Guid Id { get; set; }
public ICollection<LocationInstructor> LocationInstructors { get; set; } = new List<LocationInstructor>();
}
public class Instructor
{
public Guid Id { get; set; }
public ICollection<LocationInstructor> LocationInstructors { get; set; } = new List<LocationInstructor>();
}
public class LocationInstructor
{
public Guid LocationId { get; set; }
public Location Location { get; set; }
public Guid InstructorId { get; set; }
public Instructor Instructor { get; set; }
}
并在 dbcontext
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.Entity<LocationInstructor>()
.HasKey(bc => new { bc.LocationId, bc.InstructorId });
modelBuilder.Entity<LocationInstructor>()
.HasOne(bc => bc.Location)
.WithMany(b => b.LocationInstructors)
.HasForeignKey(bc => bc.InstructorId);
modelBuilder.Entity<LocationInstructor>()
.HasOne(bc => bc.Instructor)
.WithMany(c => c.LocationInstructors)
.HasForeignKey(bc => bc.LocationId);
}
这是我尝试执行的操作
var instructors = new List<Instructor>
{
new Instructor(),new Instructor()
};
await applicationDbContext.Instructors.AddRangeAsync(instructors);
Location location = new Location();
foreach (var instructor in instructors)
{
location.LocationInstructors.Add(new LocationInstructor { Instructor= instructor, Location=location});
}
await applicationDbContext.Locations.AddAsync(location);
await applicationDbContext.SaveChangesAsync();
所以,我的问题是为什么 2 值不同?我在这里错过了什么吗?