File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
src/API/LeadershipProfileAPI/Data Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public EdFiDbContext(DbContextOptions<EdFiDbContext> options) : base(options)
1818 public DbSet < ProfilePositionHistory > ProfilePositionHistory { get ; set ; }
1919 public DbSet < ProfileCertification > ProfileCertification { get ; set ; }
2020 public DbSet < ProfileEducation > ProfileEducation { get ; set ; }
21- public DbSet < ProfileProfessionalDevelopment > ProfileProfessionalDevelopment { get ; set ; }
21+ public DbSet < StaffProfessionalDevelopment > StaffProfessionalDevelopments { get ; set ; }
2222 public DbSet < StaffAdmin > StaffAdmins { get ; set ; }
2323
2424 protected override void OnModelCreating ( ModelBuilder modelBuilder )
@@ -46,10 +46,6 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)
4646 . ToView ( "vw_LeadershipProfileEducation" , "edfi" )
4747 . HasNoKey ( ) ;
4848
49- modelBuilder . Entity < ProfileProfessionalDevelopment > ( )
50- . ToView ( "vw_LeadershipProfileProfessionalDevelopment" , "edfi" )
51- . HasNoKey ( ) ;
52-
5349 modelBuilder . Entity < StaffAdmin > ( )
5450 . HasKey ( k => k . Id ) ;
5551
You can’t perform that action at this time.
0 commit comments