modelBuilder.Entity<Food>() .HasMany(left => left.Menus) .WithMany(right => right.Foods) .UsingEntity(join => join.ToTable("TheDesiredName"));