Hi All,
I have the following query in Linq:
var query = from question in context.Questions.Include("QAnswers")
join answer in context.Answers
on question.id equals answer.qst
where answer.user == param_userID
select question;
return query.toList();
The problem is that it doesn't load the "QAnswers" navigation property at all. Is there any way in Entity Framework to return the entity and restricted result set in its navigation property?
Ps. I'm using EF4 if it's important