1
考慮Child
& Root
類 -生成腳手架模板遞歸MVC
public class Child
{
public string ChildProperty { get; set; }
}
public class Root
{
public Child child { get; set; }
public string RootProperty { get; set; }
}
之間 以下compostion關係的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>
如何生成腳手架模板以包含子屬性?
謝謝你的幫助。