What are scalar and navigation properties in Entity Framework?

Technology CommunityCategory: Entity FrameworkWhat are scalar and navigation properties in Entity Framework?
VietMX Staff asked 3 years ago
  • Scalar properties are those where actual values are contained in the entities. Normally a scalar property will map to a database field.
  • Navigation properties help to navigate from one entity to another entity directly in the code.