Reed
Reed

Reputation: 73

Scalar Property and Navigational Property EDMX

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

Upvotes: 7

Views: 3558

Answers (1)

Arthur
Arthur

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

Related Questions