Which of the following is a common inheritance strategy used in Entity Framework?

  • Table per class
  • Table per entity
  • Table per hierarchy
  • Table per type
A common inheritance strategy used in Entity Framework is "Table per hierarchy," where all classes in the hierarchy are mapped to a single database table. This strategy utilizes a discriminator column to differentiate between different types within the hierarchy.
Add your answer
Loading...

Leave a comment

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