An alternative solution would be to override a method in your DbContext class.
public class MyDbContext : DbContext
{
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Entity().ToTable("DB_PRODUCTS_TBL");
// otherwise EF assumes the table is called "Products"
}
}