我是 SQL Server 存储过程的新手,如果我是个白痴,我深表歉意。我想使用一个存储过程来返回一个对象列表,每个对象都有一个包含相关对象列表的属性。例如
public class Question
{
public int QuestionID { get; set; }
public string Question { get; set; }
public List<Answer> Answers { get; set; }
}
public class Answer
{
public int AnswerID { get; set;}
public int QuestionID { get; set; }
public string Answer { get; set;}
}
我想编写一个存储过程,它返回一个问题列表,每个问题的 Answers 属性都填充了相关的 Answer 对象。
非常感谢任何帮助!
谢谢,
戴夫