ほとんどのLINQはラムダ式で記述されているようです。ラムダを使用してこの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 };