Im working with an ASP.NET boilerplate and would like to rename the sql tables it uses
I believe the relevant code is
public AlbumViewerContext(DbContextOptions options) : base(options)
{
}
public DbSet<Album> Albums { get; set; }
public DbSet<Artist> Artists { get; set; }
public DbSet<Track> Tracks { get; set; }
public DbSet<User> Users { get; set; }
It also includes models for Albums, Artists, Tracks and Users
How would i go about changing the SQL table names?