假设我们有一个接受 BigModel 类作为模型的视图:
class BigModel
{
public int SimpleValue{get;set;}
public SmallModel ComplexValue{get;set;}
}
class SmallModel
{
public string AnotherSimpleValue{get;set;}
}
该视图有一个 EditorForSimpleValue
和一个接受SmallModel
类作为模型的局部视图。如何使这个局部视图作为SmallModel
.
我的目标是在所有编辑结束BigModel
时在用户提交表单时在我的控制器中实现完全配置的实例。