我对 ASP.Net MVC 有点陌生,我有一个复杂的模型。
public class BuildingPermit
{
public int ApplicationID { get; set; }
public virtual Person Applicant { get; set; }
public virtual Area ApplicantArea { get; set; }
public virtual ICollection<Owner> Owners { get; set; }
/...
}
使用脚手架,我创建了控制器和所有视图。但是,我想在同一页面中注册所有详细信息,这意味着在BuildingPermit
'sCreate
视图中,为Applicant
of type Person
、ApplicationArea
of typeArea
等创建详细信息。有什么办法可以做到这一点吗?
如果不可能,我认为可以添加一个链接来创建对象。当用户单击它时,页面会转到该视图,创建它,取回其信息并将其显示在BuildingPermit
的视图中。
我会很感激你的帮助。