Results 3 comments of Funix565

Hi, My application also didn't run when I completed the inheritance part. I've changed the table name to Person in `SchoolContext.cs` ```c# modelBuilder.Entity().ToTable("Person"); //

As for the #21783, `FromSql` should be `FromSqlRaw` in `DepartmentsController.cs` ```c# var department = await _context.Departments .FromSqlRaw(query, id) .Include(d = > d.Administrator) .AsNoTracking() .FirstOrDefaultAsync(); ``` The merge to the docs...

Dear @Rick-Anderson , Could you please explain to me the purpose of this container issue? As I see, they are all closed with almost no solution or explanation provided. The...