我刚刚注意到DataTypeAttribute该类是从System.ComponentModel.DataAnnotations.ValidationAttribute.
就 ASP.NET MVCDefaultModelBinder类而言,DataTypeAttribute是一个验证属性吗?简而言之,ModelBinder 是否根据DataTypeAttribute?
例如,如果我将DataType属性指定为DataType.EmailAddress,它将验证电子邮件地址还是此属性仅提供对象的元数据。
更新
我在 SO 上发现了一个类似的问题:
DataTypeAttribute 验证是否在 MVC2 中工作?
因此,据此它不能用作验证属性。System.ComponentModel.DataAnnotations.ValidationAttribute那么,如果它不用作验证属性,为什么要继承它呢?