Child
考虑以下&Root
类之间的组成关系-
public class Child
{
public string ChildProperty { get; set; }
}
public class Root
{
public Child child { get; set; }
public string RootProperty { get; set; }
}
Root
为类创建强类型视图,不包括 child
属性。
<fieldset>
<legend>Root</legend>
<div class="editor-label">
@Html.LabelFor(model => model.RootProperty)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.RootProperty)
@Html.ValidationMessageFor(model => model.RootProperty)
</div>
<p>
<input type="submit" value="Save" />
</p>
</fieldset>
如何生成脚手架模板以包含子属性?
谢谢您的帮助。