我在我的视图模型中声明了属性,例如:
[Required(ErrorMessage = "The Date field is required for Start.")]
[Display(Name = "Start")]
public DateTime DateStart { get; set; }
但是,我仍然收到默认的“开始”字段是必需的错误消息。DateTime
我认为这是因为隐式需要不可为空的,并且该Required
属性被忽略。除了使它们可以为空之外,有没有办法为这些特定属性自定义我的错误消息?