使用此处建议的方法,我设法为我的大多数类型创建了一个视图。但是,有 2 个集合我遇到了问题。
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
Create 视图中,为Owners
与类型ICollection<Owner>
。其他类型的行为应有尽有,但不是ICollection
。
我想让用户能够以某种方式在的创建视图中注册几个Owner
s 。BuildingPermit
如果不可能,至少创建 1、2 或 3。
提前致谢。