Given class animal
when using Entity Framework:
public class MyDbContext : DbContext
{
public DbSet<animal> abc_animals { get; set; }
}
Does the property name abc_animals
matter? I was hoping this would control the table name without having to use annotations but apparently not. It's annoying if I want to prefix all my table-names with the same string.