This image shows a portion of the Program.cs file with the below code in it. public class OracleDbContext : DbContext { public DbSet Employees { get; set; } public DbSet Departments { get; set; } protected override void OnModelCreating(DbModelBuilder modelBuilder) { modelBuilder.HasDefaultSchema("HR"); } }