Entity Framework not loading related objects

后端 未结 3 1460
醉酒成梦
醉酒成梦 2021-01-05 15:07

I am new to Entity Framework, but might be misunderstanding something, or doing something wrong.

My code, to get me a list of tasks for a particular person :

3条回答
  •  孤城傲影
    2021-01-05 15:31

    You should explicitly include references with the Include() method. It has two overloads: one takes the property as lambda expression, the other takes the path to load as a string (useful when you need to load references on objects available in collections).

    MSDN reference

提交回复
热议问题