There are three approaches for implementing inheritance in Entity Framework.
TPT and TPC both create a concrete tables when you implement inheritance whereas TPH records for multiple subclasses live in the same table. Right now EF core only supports TPH.
Table per Concrete (TPC)
In TPC, for each concrete class we get one table.
If there are student and teacher that inherits from abstract person class, in the DB, we get two tables: student
and teacher
.
These two tables will both contain the fields from the abstract class. Sql server does not know or care about inheritance so we express in code that they are related.
Table per Type (TPT)
Similar to TPC but unlike TPC, in TPT, abstract class gets its own table.
Unlike TPC, TPT tables doesn’t contain the inherited fields from the abstract class. If person abstract class has age and name, student and teacher won’t have those fields because person class would have those fields already. The subclass and abstract class knows about the relation due to their shared primary key value.
Table per Hierarchy (TPH)
All subclasses in the inheritance are stored in the single database table. A column is used as discriminator
and the discriminator will determine which DB record is for which type.
Since all the subclasses are stored in a single table, it has better performance compared to other approaches. However, since different subclasses are sharing one table, this means that all the columns have to be nullable because we don’t know which field is not available in other subclasses.
Also, it’s not intuitive to know that which field belongs to which.