Junior EF Core

What is a navigation property?

Navigation properties allow navigation from one entity to related entities. They define

relationships (one-to-one, one-to-many, many-to-many).

Example:

public class Order

public int Id { get; set; }

public Customer Customer { get; set; } // Navigation property

More from Entity Framework Core Tutorial

All questions for this course