How can inheritance in Entity Framework be used to implement polymorphic behavior in a data model?

  • By using Table-Per-Concrete-Class (TPinheritance strategy
  • By using Table-Per-Entity (TPE) inheritance strategy
  • By using Table-Per-Hierarchy (TPH) inheritance strategy
  • By using Table-Per-Type (TPT) inheritance strategy
In Entity Framework, polymorphic behavior in a data model can be implemented using Table-Per-Hierarchy (TPH) inheritance strategy, where all types in the hierarchy are mapped to a single table. This approach simplifies the schema but may lead to NULL values for non-common attributes. It's suitable for scenarios with fewer subtypes and shared attributes.
Add your answer
Loading...

Leave a comment

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