111,094
社区成员




modelBuilder.Entity<A>()
.HasMany(t => t.C)
.WithMany()
.Map(m =>
{
m.ToTable("B");
m.MapLeftKey("AId");
m.MapRightKey("CId");
});