您好 我有这样的模型:
public class MyModel
{
public string Header {get;set;}
public IList<ChildModel> Children {get;set;}
}
public class ChildModel
{
public string Name {get;set;}
public bool IsDefault {get;set;
}
在控制器的Create操作中,我希望这样:
public ActionResult Create(MyModel model)
{
//...save...
}
它适用于Header属性和子集合的Name属性(我使用Html数组:Children [x] .Name),但模型绑定器不设置与之一起使用的IsDefault属性的值RadioButton列表。
有没有办法使用带有bool孩子的单选按钮正确设置强类型模型?我不想为此实现自定义模型绑定器......如果可能的话。
thx