ASP.NET MVC2,如何添加元数据属性并控制属性在视图中显示的顺序
在 ASP.NET MVC2 中,我有两个具有父子关系的 ViewModel,如下所示。
父 ViewModel:
public class PersonViewModel
{
[Required]
public int ID{get;set;}
[Required]
[StringLength(50)]
public string Name{get;set;}
}
子 ViewModel:
public class EmployeeViewModel:PersonViewModel
{
[Required]
[StringLength(50)]
public string Title{get;set;}
}
我对此设置有两个问题。
如何从子 ViewModel 向父 ViewModel 中的属性添加元数据属性?
当使用 Html.DisplayForModel() 在视图中显示时,父 ViewModel 中的属性似乎总是显示在子 ViewModel 的属性之后。如何控制属性的显示顺序?
In ASP.NET MVC2, I have two ViewModels with Parent-Child relationship as below.
Parent ViewModel:
public class PersonViewModel
{
[Required]
public int ID{get;set;}
[Required]
[StringLength(50)]
public string Name{get;set;}
}
Child ViewModel:
public class EmployeeViewModel:PersonViewModel
{
[Required]
[StringLength(50)]
public string Title{get;set;}
}
I have two questions with this setting.
How can I add Metadata Attributes to the properties in the parent ViewModel from the child ViewModel?
When displayed in the View using Html.DisplayForModel(), It seems the properties in the parent ViewModel always display after those of the child ViewModel. how can I control the order of properties displayed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论