私はこのような2つのモデルを持っています。
public partial class Question
{
public int QuestionId { get; set; }
public string QuestionText { get; set; }
public string Ans1 { get; set; }
public string Ans2 { get; set; }
public string Ans3 { get; set; }
public string Ans4 { get; set; }
}
public partial class UserAnswer
{
public int UserAnsId { get; set; }
public Nullable<int> QuestionId { get; set; }
public Nullable<int> UserId { get; set; }
public Nullable<int> AnsVal { get; set; }
}
ご覧のとおり、QuestionId は両方のモデルにあります。ビューでレンダリングするにはどうすればよいですか。複数の質問があります。Question Moldel には初期実行時のデータがありますが、UserAnswer にはありません。
ビューで IEnumerable として使用できるように、これら 2 つのモデルをどのように組み合わせることができますか。Ans1、Ans2、Ans3、Ans4 にはテキストがあり、UserAnswer の AnsVal は Raiobutton から値を取得します。