How does Entity Framework handle inheritance mapping for Entity Types?

  • Table Per Class (TPC)
  • Table Per Concrete Type (TPC)
  • Table Per Hierarchy (TPH)
  • Table Per Type (TPT)
Entity Framework uses Table Per Type (TPT) inheritance mapping to map each type to its own table in the database. This means that each subclass gets its own table, and the base class gets a table to hold shared properties. This approach allows for better normalization and reduces redundancy in the database schema.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *