Top "Navigation-properties" questions

Navigation Properties are used within The Entity Framework to Navigate to relations of a table.

Including navigation properties from Entity Framework TPH classes

I've got an EF hierarchy that (dramatically simplified) looks something like this: class Room { EntityCollection<Session> Sessions; } class …

entity-framework inheritance navigation-properties
EF5 How to get list of navigation properties for a domain object

I'm working on an EF 5 Code-First solution and I am trying to update an existing entity with a modified one …

entity-framework c#-4.0 navigation-properties
Entity Framework Core: private or protected navigation properties

Is it somehow possible to define navigation properties in EFCore with private or protected access level to make this kind …

c# asp.net-core .net-core entity-framework-core navigation-properties
Entity Framework - Selective Condition on Included Navigation Property

Assume I have these simplified EF generated entities... public class PurchaseOrder { public int POID {get;set;} public int OrderID {get;…

c# linq entity-framework navigation-properties
Using Automapper, mapping DTOs back to Entity Framework including referenced entities

I've got POCO domain entities that are persisted using Entity Framework 5. They are obtained from the DbContext using a repository …

entity-framework asp.net-web-api automapper dto navigation-properties