Navigation Properties are used within The Entity Framework to Navigate to relations of a table.
I generated an Entity Framework Model (4.0) from my database. I did not design the database and do not have any …
c# entity-framework entity-framework-4 navigation-propertiesAs I remember in EF navigation property should be virtual: public class Blog { public int BlogId { get; set; } public string …
c# entity-framework virtual entity-framework-core navigation-propertiesI had seen some books(e.g programming entity framework code first Julia Lerman) define their domain classes (POCO) with …
c# entity-framework ef-code-first domain-driven-design navigation-propertiessorry for my english, I'll try to be short and concise. I have to tables "ALUMNOS" and "MATERIAS". In SQL …
c# linq entity-framework navigation-properties not-existsI have following POCO class being used in EF 6.x. My question: Why is the navigation property of 'Posts' under …
entity-framework navigation-propertiesI'm trying to put together a simple toy project using Entity Framework, WebAPI, OData, and an Angular client. Everything is …
c# entity-framework asp.net-web-api odata navigation-propertiesI was wondering why there are separate methods for populating navigation properties. If I work on an entire set, i …
c# entity-framework navigation-propertiesScenario: I'd like to add an entity to the database that would have navigation properties and that entity has navigation …
c# entity-framework lazy-loading navigation-propertiesI am trying to establish a many-to-one relationship. The entity that represents the “many” has a navigation property pointing back …
c# ef-code-first entity-framework-4.1 entity-relationship navigation-propertiesI have a method on my generated partial class like this: var pChildren = this.Children .Skip(skipRelated) .Take(takeRelated) .ToList(); …
c# .net entity-framework sql-server-2008-r2 navigation-properties