このようなアプローチを試したことがありますか?
//モデル
public class MyModel
{
public int SomeProperty { get; set; }
public int SomeOtherProperty { get; set; }
public IList<MyDetails> RadioButtonList{ get; set; }
}
public class MyDetails
{
public string Name { get; set; }
public string Id { get; set; }
}
// コントローラー
public ActionResult Index()
{
MyModel myModel = new MyModel()
{
RadioButtonList = getListFromDB();
SomeProperty = valuse
};
return View(myModel);
}
//意見
@foreach (var item in Model.RadioButtonList)
{
<b>@item.Name</b>
@Html.RadioButton("@item.Id", "0", true); <span> Yes </span><br />
@Html.RadioButton("@item.Id", "1", false); <span> No </span><br />
}