Structure for MVC4 Survey Web App
问题 I am trying to figure out the model structure for a survey app, using the MVC architecture. Actually it is a Q&A section within a larger WebApp. I have about 120 questions and they will all have set options for answers, no written answers. Currently I have 3 tables: Question(id, QuestionText) Answer(id, Userid, Questionid, AnswerOptionId) AnswerOption(id, Option) - example: Yes, No, 1-10, etc I am trying to figure out how to build my viewmodel and view. I can't just have something like: @Html