ASP.NET MVC 5 的流畅验证
Fluent Validation with ASP.NET MVC 5
我们拥有具有 Fluent Validation 的 MVC-2 应用程序(Visual Studio 2010)。最近我们将其迁移到 Visual Studio 2013,MVC 5。使用 NuGet 升级 Fluent Validation 后,我得到以下成员的编译错误。
找不到namespace FluentValidation.Mvc.MetadataExtensions
我正在使用来自 FluentValidation.Mvc.MetadataExtensions.MetadataExtensions
class 的 UIHint, DataType, DisplayName
名成员。我应该使用哪个 class 来修复错误?
编辑
代码损坏
[FluentValidation.Attributes.Validator(typeof(class1Validator))]
public partial class class1: BusinessBase<decimal>
{
}
public class class1Validator: FluentValidation.AbstractValidator<class1>
{
public class1Validator()
{
RuleFor(o => o.FirstName).NotEmpty().Length(1, 60).UIHint("First Name"); //giving error for UIHint
RuleFor(o => o.Dob).DataType(System.ComponentModel.DataAnnotations.DataType.Date).GreaterThan(DateTime.MinValue).LessThan(DateTime.Now); //giving error for datatype
}
}
public class SearchValidator : FluentValidation.AbstractValidator<SearchCriteria>
{
public SearchValidator()
{
RuleFor(o => o.Id).DisplayName("User ID"); //giving error for DisplayName in both lines
RuleFor(o => o.LastName).DisplayName("Last Name");
}
}
这些扩展方法似乎已被弃用。我创建了一个网络项目来做一些研究。
在任何最新版本(FluentValidation.Mvc3+)中,我找不到扩展方法。
当我使用 FluentValildation.Mvc2 创建项目时,它们存在。
您将需要使用较旧的库(我不知道它们与较新版本的 MVC 的配合情况如何)或对每个已弃用的扩展方法使用相应的数据注释。
public class BusinessBase<T>
{
[UIHint("First Name")]
public string FirstName { get; set; }
public DateTime Dob { get; set; }
}
希望对您有所帮助。
我们拥有具有 Fluent Validation 的 MVC-2 应用程序(Visual Studio 2010)。最近我们将其迁移到 Visual Studio 2013,MVC 5。使用 NuGet 升级 Fluent Validation 后,我得到以下成员的编译错误。
找不到namespace FluentValidation.Mvc.MetadataExtensions
我正在使用来自 FluentValidation.Mvc.MetadataExtensions.MetadataExtensions
class 的 UIHint, DataType, DisplayName
名成员。我应该使用哪个 class 来修复错误?
编辑
代码损坏
[FluentValidation.Attributes.Validator(typeof(class1Validator))]
public partial class class1: BusinessBase<decimal>
{
}
public class class1Validator: FluentValidation.AbstractValidator<class1>
{
public class1Validator()
{
RuleFor(o => o.FirstName).NotEmpty().Length(1, 60).UIHint("First Name"); //giving error for UIHint
RuleFor(o => o.Dob).DataType(System.ComponentModel.DataAnnotations.DataType.Date).GreaterThan(DateTime.MinValue).LessThan(DateTime.Now); //giving error for datatype
}
}
public class SearchValidator : FluentValidation.AbstractValidator<SearchCriteria>
{
public SearchValidator()
{
RuleFor(o => o.Id).DisplayName("User ID"); //giving error for DisplayName in both lines
RuleFor(o => o.LastName).DisplayName("Last Name");
}
}
这些扩展方法似乎已被弃用。我创建了一个网络项目来做一些研究。
在任何最新版本(FluentValidation.Mvc3+)中,我找不到扩展方法。
当我使用 FluentValildation.Mvc2 创建项目时,它们存在。
您将需要使用较旧的库(我不知道它们与较新版本的 MVC 的配合情况如何)或对每个已弃用的扩展方法使用相应的数据注释。
public class BusinessBase<T>
{
[UIHint("First Name")]
public string FirstName { get; set; }
public DateTime Dob { get; set; }
}
希望对您有所帮助。