Validation type names in unobtrusive client validation rules must be unique

前端 未结 5 980
予麋鹿
予麋鹿 2020-12-05 22:47

Validation type names in unobtrusive client validation rules must be unique. The following validation type was seen more than once: required

5条回答
  •  时光取名叫无心
    2020-12-05 23:32

    JimmiTh's comment on the question provided a key insight for me to resolve this for myself.

    In my case, I definitely did add an additional provider to ModelValidatorProviders. I added a custom validation factory (using Fluent Validation) with this code in my Global.asax.cs file:

    ModelValidatorProviders.Providers.Add(
        new FluentValidationModelValidatorProvider(validatorFactory));
    

    But using multiple providers isn't necessarily problematic. What seems to be problematic is if multiple providers provide the same validators, because that will register the same rules multiple times, causing the mentioned problem with the Microsoft unobtrusive validation code.

    I ended up removing the following line from the same file as I decided I didn't need to use both providers:

    FluentValidationModelValidatorProvider.Configure();
    

    The Configure method above is itself adding a provider to ModelValidatorProviders, and I was effectively registering the same validator class twice, hence the error about non-unique "validation type names".

    The SO question jquery - Fluent Validations. Error: Validation type names in unobtrusive client validation rules must be unique points to another way that using multiple providers can lead to the mentioned problem. Each provider can be configured to add an 'implicit required attribute to 'value types' (i.e. view model properties that aren't nullable). To resolve this particular issue, I could change my code to the following so that none of the providers add implicit required attributes:

    FluentValidationModelValidatorProvider.Configure(
        provider => provider.AddImplicitRequiredValidator = false);
    
    
    DependencyResolverValidatorFactory validatorFactory =
        new DependencyResolverValidatorFactory();
    
    FluentValidationModelValidatorProvider validatorFactoryProvider =
        new FluentValidationModelValidatorProvider(validatorFactory);
    
    validatorFactoryProvider.AddImplicitRequiredValidator = false;
    ModelValidatorProviders.Providers.Add(validatorFactoryProvider);
    
    
    DataAnnotationsModelValidatorProvider.AddImplicitRequiredAttributeForValueTypes = false; 
    

提交回复
热议问题