MVC如何设置值元数据

时间:2013-03-17 01:54:52

标签: asp.net-mvc asp.net-mvc-3 entity-framework

我正在测试一个表单,它有很多字段。我想设置字段的值,所以我不必继续重新输入它。有没有办法在类元数据区域中设置它,我也将其设置为必需类型。

[MetadataType(typeof(myMetaData))]
public partial class myClass
{

    [Required]
    [Display(Name = "Zip")]
    public string Zip { get; set; }

    [Required]
    [Display(Name = "State")]
    public string State { get; set; }

    [Required]
    [Display(Name = "City")]
    public string City { get; set; }

1 个答案:

答案 0 :(得分:1)

使用 DefaultValue 属性。

[Required]
[Display(Name = "City")]
[DefaultValue("London")]
public string City { get; set; }

这将解决您的问题。