What is the role of Shadow Properties in Entity Framework Core?

  • They are properties with no corresponding database column
  • They are properties that store passwords securely
  • They are used for shadowing database tables
  • They are navigation properties in EF Core
Shadow Properties in EF Core are properties that are not part of the entity class's public API and have no corresponding database column. They are used internally by EF Core to store additional data or perform certain tasks, such as storing foreign key values or tracking change state.
Add your answer
Loading...

Leave a comment

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