似乎大多数 LINQ 都是用 lambda 表达式编写的。我如何使用 lambda 重写这个 linq,有点混淆样式(尤其是连接)?
var responses =
from c in questionRepository.GetReponses()
join o in questionRepository.GetQuestions() on
c.QuestionID equals o.QuestionID
where c.UserID == 9999
orderby o.DisplayOrder
select new { o.QuestionText, c.AnswerValue };