What are Navigation Properties in Entity Framework for?
摘要:
A navigation property allows you to navigate (duh!) from one entity to a "connected" entity.E.g. if your users is connected to a role, you can use the "Role" navigation to read and inspect the role associated with the user.EDIT:if you want to load the user with LINQ-to-Entities, 阅读全文