"
 
 
 
ASP.NET (snapshot 2017) Microsoft documentation and samples

Implementing Inheritance with the Entity Framework 6 in an ASP.NET MVC 5 Application (11 of 12)

by Tom Dykstra

Download Completed Project or Download PDF

The Contoso University sample web application demonstrates how to create ASP.NET MVC 5 applications using the Entity Framework 6 Code First and Visual Studio 2013. For information about the tutorial series, see the first tutorial in the series.

In the previous tutorial you handled concurrency exceptions. This tutorial will show you how to implement inheritance in the data model.

In object-oriented programming, you can use inheritance to facilitate code reuse. In this tutorial, you’ll change the Instructor and Student classes so that they derive from a Person base class which contains properties such as LastName that are common to both instructors and students. You won’t add or change any web pages, but you’ll change some of the code and those changes will be automatically reflected in the database.

Options for mapping inheritance to database tables

The Instructor and Student classes in the School data model have several properties that are identical:

Student_and_Instructor_classes
Student_and_Instructor_classes

Suppose you want to eliminate the redundant code for the properties that are shared by the Instructor and Student entities. Or you want to write a service that can format names without caring whether the name came from an instructor or a student. You could create a Person base class which contains only those shared properties, then make the Instructor and Student entities inherit from that base class, as shown in the following illustration:

Student_and_Instructor_classes_deriving_from_Person_class
Student_and_Instructor_classes_deriving_from_Person_class

There are several ways this inheritance structure could be represented in the database. You could have a Person table that includes information about both students and instructors in a single table. Some of the columns could apply only to instructors (HireDate), some only to students (EnrollmentDate), some to both (LastName, FirstName). Typically, you’d have a discriminator column to indicate which type each row represents. For example, the discriminator column might have “Instructor” for instructors and “Student” for students.

Table-per-hierarchy_example
Table-per-hierarchy_example

This pattern of generating an entity inheritance structure from a single database table is called table-per-hierarchy (TPH) inheritance.

An alternative is to make the database look more like the inheritance structure. For example, you could have only the name fields in the Person table and have separate Instructor and Student tables with the date fields.

Table-per-type_inheritance
Table-per-type_inheritance

This pattern of making a database table for each entity class is called table per type (TPT) inheritance.

Yet another option is to map all non-abstract types to individual tables. All properties of a class, including inherited properties, map to columns of the corresponding table. This pattern is called Table-per-Concrete Class (TPC) inheritance. If you implemented TPC inheritance for the Person, Student, and Instructor classes as shown earlier, the Student and Instructor tables would look no different after implementing inheritance than they did before.

TPC and TPH inheritance patterns generally deliver better performance in the Entity Framework than TPT inheritance patterns, because TPT patterns can result in complex join queries.

This tutorial demonstrates how to implement TPH inheritance. TPH is the default inheritance pattern in the Entity Framework, so all you have to do is create a Person class, change the Instructor and Student classes to derive from Person, add the new class to the DbContext, and create a migration. (For information about how to implement the other inheritance patterns, see Mapping the Table-Per-Type (TPT) Inheritance and Mapping the Table-Per-Concrete Class (TPC) Inheritance in the MSDN Entity Framework documentation.)

Create the Person class

In the Models folder, create Person.cs and replace the template code with the following code:

[!code-csharpMain]

   1:  using System.ComponentModel.DataAnnotations;
   2:  using System.ComponentModel.DataAnnotations.Schema;
   3:   
   4:  namespace ContosoUniversity.Models
   5:  {
   6:      public abstract class Person
   7:      {
   8:          public int ID { get; set; }
   9:   
  10:          [Required]
  11:          [StringLength(50)]
  12:          [Display(Name = "Last Name")]
  13:          public string LastName { get; set; }
  14:          [Required]
  15:          [StringLength(50, ErrorMessage = "First name cannot be longer than 50 characters.")]
  16:          [Column("FirstName")]
  17:          [Display(Name = "First Name")]
  18:          public string FirstMidName { get; set; }
  19:   
  20:          [Display(Name = "Full Name")]
  21:          public string FullName
  22:          {
  23:              get
  24:              {
  25:                  return LastName + ", " + FirstMidName;
  26:              }
  27:          }
  28:      }
  29:  }

Make Student and Instructor classes inherit from Person

In Instructor.cs, derive the Instructor class from the Person class and remove the key and name fields. The code will look like the following example:

[!code-csharpMain]

   1:  using System;
   2:  using System.Collections.Generic;
   3:  using System.ComponentModel.DataAnnotations;
   4:  using System.ComponentModel.DataAnnotations.Schema;
   5:   
   6:  namespace ContosoUniversity.Models
   7:  {
   8:      public class Instructor : Person
   9:      {
  10:          [DataType(DataType.Date)]
  11:          [DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)]
  12:          [Display(Name = "Hire Date")]
  13:          public DateTime HireDate { get; set; }
  14:   
  15:          public virtual ICollection<Course> Courses { get; set; }
  16:          public virtual OfficeAssignment OfficeAssignment { get; set; }
  17:      }
  18:  }

Make similar changes to Student.cs. The Student class will look like the following example:

[!code-csharpMain]

   1:  using System;
   2:  using System.Collections.Generic;
   3:  using System.ComponentModel.DataAnnotations;
   4:  using System.ComponentModel.DataAnnotations.Schema;
   5:   
   6:  namespace ContosoUniversity.Models
   7:  {
   8:      public class Student : Person
   9:      {
  10:          [DataType(DataType.Date)]
  11:          [DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)]
  12:          [Display(Name = "Enrollment Date")]
  13:          public DateTime EnrollmentDate { get; set; }
  14:   
  15:          public virtual ICollection<Enrollment> Enrollments { get; set; }
  16:      }
  17:  }

Add the Person Entity Type to the Model

In SchoolContext.cs, add a DbSet property for the Person entity type:

[!code-csharpMain]

   1:  public DbSet<Person> People { get; set; }

This is all that the Entity Framework needs in order to configure table-per-hierarchy inheritance. As you’ll see, when the database is updated, it will have a Person table in place of the Student and Instructor tables.

Create and Update a Migrations File

In the Package Manager Console (PMC), enter the following command:

Add-Migration Inheritance

Run the Update-Database command in the PMC. The command will fail at this point because we have existing data that migrations doesn’t know how to handle. You get an error message like the following one:

Could not drop object ‘dbo.Instructor’ because it is referenced by a FOREIGN KEY constraint.

Open Migrations&lt;timestamp>_Inheritance.cs and replace the Up method with the following code:

[!code-csharpMain]

   1:  public override void Up()
   2:  {
   3:      // Drop foreign keys and indexes that point to tables we're going to drop.
   4:      DropForeignKey("dbo.Enrollment", "StudentID", "dbo.Student");
   5:      DropIndex("dbo.Enrollment", new[] { "StudentID" });
   6:   
   7:      RenameTable(name: "dbo.Instructor", newName: "Person");
   8:      AddColumn("dbo.Person", "EnrollmentDate", c => c.DateTime());
   9:      AddColumn("dbo.Person", "Discriminator", c => c.String(nullable: false, maxLength: 128, defaultValue: "Instructor"));
  10:      AlterColumn("dbo.Person", "HireDate", c => c.DateTime());
  11:      AddColumn("dbo.Person", "OldId", c => c.Int(nullable: true));
  12:   
  13:      // Copy existing Student data into new Person table.
  14:      Sql("INSERT INTO dbo.Person (LastName, FirstName, HireDate, EnrollmentDate, Discriminator, OldId) SELECT LastName, FirstName, null AS HireDate, EnrollmentDate, 'Student' AS Discriminator, ID AS OldId FROM dbo.Student");
  15:   
  16:      // Fix up existing relationships to match new PK's.
  17:      Sql("UPDATE dbo.Enrollment SET StudentId = (SELECT ID FROM dbo.Person WHERE OldId = Enrollment.StudentId AND Discriminator = 'Student')");
  18:   
  19:      // Remove temporary key
  20:      DropColumn("dbo.Person", "OldId");
  21:   
  22:      DropTable("dbo.Student");
  23:   
  24:      // Re-create foreign keys and indexes pointing to new table.
  25:      AddForeignKey("dbo.Enrollment", "StudentID", "dbo.Person", "ID", cascadeDelete: true);
  26:      CreateIndex("dbo.Enrollment", "StudentID");
  27:  }

This code takes care of the following database update tasks:

(If you had used GUID instead of integer as the primary key type, the student primary key values wouldn’t have to change, and several of these steps could have been omitted.)

Run the update-database command again.

(In a production system you would make corresponding changes to the Down method in case you ever had to use that to go back to the previous database version. For this tutorial you won’t be using the Down method.)

[!NOTE] It’s possible to get other errors when migrating data and making schema changes. If you get migration errors you can’t resolve, you can continue with the tutorial by changing the connection string in the Web.config file or by deleting the database. The simplest approach is to rename the database in the Web.config file. For example, change the database name to ContosoUniversity2 as shown in the following example:

[!code-xmlMain]

   1:  <add name="SchoolContext" 
   2:      connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=ContosoUniversity2;Integrated Security=SSPI;" 
   3:      providerName="System.Data.SqlClient" />

With a new database, there is no data to migrate, and the update-database command is much more likely to complete without errors. For instructions on how to delete the database, see How to Drop a Database from Visual Studio 2012. If you take this approach in order to continue with the tutorial, skip the deployment step at the end of this tutorial or deploy to a new site and database. If you deploy an update to the same site you’ve been deploying to already, EF will get the same error there when it runs migrations automatically. If you want to troubleshoot a migrations error, the best resource is one of the Entity Framework forums or StackOverflow.com.

Testing

Run the site and try various pages. Everything works the same as it did before.

In Server Explorer, expand Data Connections* and then Tables, and you see that the Student** and Instructor tables have been replaced by a Person table. Expand the Person table and you see that it has all of the columns that used to be in the Student and Instructor tables.

Server_Explorer_showing_Person_table
Server_Explorer_showing_Person_table

Right-click the Person table, and then click Show Table Data to see the discriminator column.

The following diagram illustrates the structure of the new School database:

School_database_diagram
School_database_diagram

Deploy to Azure

This section requires you to have completed the optional Deploying the app to Azure section in Part 3, Sorting, Filtering, and Paging of this tutorial series. If you had migrations errors that you resolved by deleting the database in your local project, skip this step; or create a new site and database, and deploy to the new environment.

  1. In Visual Studio, right-click the project in Solution Explorer and select Publish from the context menu.

    Publish in project context menu
  2. Click Publish.

    publish
    publish

The Web app will open in your default browser. 3. Test the application to verify it’s working.

The first time you run a page that accesses the database, the Entity Framework runs all of the migrations `Up` methods required to bring the database up to date with the current data model.

Summary

You’ve implemented table-per-hierarchy inheritance for the Person, Student, and Instructor classes. For more information about this and other inheritance structures, see TPT Inheritance Pattern and TPH Inheritance Pattern on MSDN. In the next tutorial you’ll see how to handle a variety of relatively advanced Entity Framework scenarios.

Links to other Entity Framework resources can be found in the ASP.NET Data Access - Recommended Resources.

Previous Next





Comments ( )
<00>  <01>  <02>  <03>  <04>  <05>  <06>  <07>  <08>  <09>  <10>  <11>  <12>  <13>  <14>  <15>  <16>  <17>  <18>  <19>  <20>  <21>  <22>  <23
Link to this page: //www.vb-net.com/AspNet-DocAndSamples-2017/aspnet/mvc/overview/getting-started/getting-started-with-ef-using-mvc/implementing-inheritance-with-the-entity-framework-in-an-asp-net-mvc-application.htm
<SITEMAP>  <MVC>  <ASP>  <NET>  <DATA>  <KIOSK>  <FLEX>  <SQL>  <NOTES>  <LINUX>  <MONO>  <FREEWARE>  <DOCS>  <ENG>  <CHAT ME>  <ABOUT ME>  < THANKS ME>