我使用FluentValidation和Autofac实现了我的验证。
调用了CreateInstance
,但是没有使用AbstractValidator的验证方法,因此我的模型不是使用我的规则进行验证。
调试:
在CreateInstance
中返回正确的AbstractValidator。
但是我在Validate
中放置了断点而没有被称为。
任何Ideia?
我的代码:
public class AutofacValidatorFactory : ValidatorFactoryBase
{
private readonly IComponentContext _context;
public AutofacValidatorFactory(IComponentContext context)
{
_context = context;
}
public override IValidator CreateInstance(Type validatorType)
{
object instance;
if (_context.TryResolve(validatorType, out instance))
{
var validator = instance as IValidator;
return validator; //UsuarioCadastrarValidator is returned
}
return null;
}
}
public class UsuarioCadastrarValidator : AbstractValidator<UsuarioCadastrarVM>
{
public UsuarioCadastrarValidator()
{
RuleFor(a => a.Nome).NotEmpty();
RuleFor(a => a.Nome).Length(4, 200);
...
}
public override ValidationResult Validate(UsuarioCadastrarVM instance)
{
return base.Validate(instance); //breakpoint here not is called
}
public override IValidatorDescriptor CreateDescriptor()
{
return base.CreateDescriptor(); //breakpoint here IS called
}
public override ValidationResult Validate(ValidationContext<UsuarioCadastrarVM> context)
{
return base.Validate(context); //breakpoint here not is called
}
public override Task<ValidationResult> ValidateAsync(ValidationContext<UsuarioCadastrarVM> context, CancellationToken cancellation = default(CancellationToken))
{
return base.ValidateAsync(context, cancellation); //breakpoint here not is called
}
}
答案 0 :(得分:0)
在UsuarioCadastrarVM
中,我有一个CargoId
类型的属性int
问题是CargoId
是一个整数,因此MVC
无法将我的帖子绑定到我的ViewModel,因为在我的测试中,我发送了一个空值,如果我向{发送一个值{1}}或更改为可为空(CargoId
)验证效果很好。