I have a Question class that has public List property that can contain several Answers.
I have a question repository which is respo
Use the SelectMany and First/FirstOrDefault (if you are needing one value)
List questions = //initialization; var someAnswer = questions.SelectMany(q=>q.Answers) .First(a=>a.Name =="MyName");