shadow properties

About this tag
Shadow properties in Entity Framework 7 are a feature that helps when your database schema and your class model do not align perfectly. They allow you to define properties in the model that are not exposed in your .NET entity classes but are still tracked by the Entity Framework and stored in the database. This is useful for scenarios like foreign key properties that you do not want to expose in your domain model. The tag covers discussions and tutorials about using shadow properties in EF7, including video explanations and links to official resources and the GitHub repository.
  1. News

    Shadow Properties in Entity Framework 7

    In this short video Rowan describes shadow properties new in Entity Framework 7. This is a super useful feature for those times when your database and your class model don't quite match up. Would love your thoughts! Here are some links for more information: Entity Framework 7 Github...
Back
Top