I have a model similar to this: (simplified)
Question:
public class Question
{
public string QuestionID { get; set; }
public string Title { get; set; }
public string Body { get; set; }
public List<Answer> Answers { get; set; }
}
Answer:
public class Answer
{
public string QuestionID { get; set; }
public string Body { get; set; }
}
I intend to store the data in MongoDB, and would like to use NoRM with this.
My question is: Is lazy loading supported? Or can I set it up to do lazy-loading on the document store..?
So that requesting a Question, also retrieves the Answers..? (both will be "posts" stored in the same collection on MongoDB)