How does Entity Framework represent inheritance in a relational database by default?
- Table per class
- Table per entity
- Table per hierarchy
- Table per type
By default, Entity Framework represents inheritance in a relational database using the "Table per hierarchy" strategy. In this approach, a single table is used to store data for all types in the inheritance hierarchy. Columns corresponding to properties of all types are included in this table, with a discriminator column used to determine the actual type of each row.
Loading...
Related Quiz
- What is the primary purpose of data seeding in Entity Framework?
- What role does data archiving play in database migration?
- The ________ strategy involves creating a single table for the base class and separate tables for each derived class.
- In the Table-Per-Hierarchy (TPH) inheritance strategy, how does Entity Framework differentiate between different types in a single table?
- How should connection strings be managed in an Entity Framework application for different deployment environments?