rename join table ef core code example
Example: rename join table ef core
//This is for a generated join table that isnt referenced by Data Annotations
modelBuilder.Entity()
.HasMany(left => left.Menus)
.WithMany(right => right.Foods)
.UsingEntity(join => join.ToTable("TheDesiredName"));