I have 2 POCO classes like Category and Parent. In my conceptual model, I have a navigation property from Parent to Category, but not the other way around (from Category to Product).
I have been able to successfully create a Product and assign a Category to it and save the changes, like:
Product p = new Product();
p.Category = someCategory;
context.SaveChanges();
However, when I load Products, Category is property NULL. Any advice?
Cheers, Mosh