rename join table ef core

Code Example - rename join table ef core

                
                        //This is for a generated join table that isnt referenced by Data Annotations
modelBuilder.Entity<Food>()
    .HasMany(left => left.Menus)
    .WithMany(right => right.Foods)
    .UsingEntity(join => join.ToTable("TheDesiredName"));