The ________ strategy involves creating a single table for the base class and separate tables for each derived class.
- Table-Per-Concrete
- Table-Per-Entity
- Table-Per-Hierarchy
- Table-Per-Type
The Table-Per-Concrete (TPC) strategy involves creating a single table for the base class and separate tables for each derived class. Each table contains all properties of the corresponding class, resulting in a denormalized database schema.
Loading...
Related Quiz
- How does Entity Framework represent inheritance in a relational database by default?
- ________ loading is often essential when dealing with Table Splitting to ensure all parts of an entity are loaded.
- In the context of large databases, ________ is a strategy used to move parts of the database incrementally.
- Facing a scenario where an EF update has deprecated a widely used feature, what is the recommended approach to maintain application functionality?
- What is the best practice for applying database migrations in a Continuous Integration/Continuous Deployment (CI/CD) pipeline?