I have a Question class that has public List property that can contain several Answers.
I have a question repository which is respo
It seems you could use something like this:
var query = from q in questions from a in q.Answers where a.Name == "Answer Name" select a;