Reputation: 73
What is Scalar property and Navigational Property in Entity Frame work Model?
Upvotes: 7
Views: 3558
Reputation: 8129
Basically a scalar property is mapped to a column (int, string, ...) A navigation property is mapped to a relation. e.g Order.OrderDetails brings you to all ORderDetails of a specific order.
Upvotes: 8