Entity Framework .Include() Navigation of another Navigation property
You can do it in a strongly typed way too
var test = context.Tests
.Include(x => x.Question.Select(child => child.QuestionLocale))
.FirstOrDefault()
You can use:
var test = context.Tests
.Include("Question.QuestionLocale")
.FirstOrDefault();