MVC post a list of complex objects
问题 I have a FeedbackViewModel that contains a list of questions: public class FeedbackViewModel { public List<QuestionViewModel> Questions { get; set; } } This QuestionViewModel is an object that can be inherited by 5 different types of questions public class QuestionViewModel { public string QuestionText { get; set; } public string QuestionType { get; set; } } An example of one of the inheriting question types: public class SingleQuestionViewModel : QuestionViewModel { public string AnswerText