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.
Loading...
Related Quiz
- In a scenario where query performance is critical, how would you use Entity Framework's logging to identify inefficient queries?
- What is the purpose of indexes in Entity Framework?
- When a query performance degrades due to an unoptimized index, this is often referred to as ________.
- To update seeded data in an existing database, you need to modify the seeding logic and then run the ________ command.
- For client-side validation in Entity Framework, ________ can be used to generate validation scripts based on model annotations.