views:

291

answers:

1

What is Scalar property and Navigational Property in Entity Frame work Model?

+3  A: 

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.

Arthur