Validation type names in unobtrusive client validation rules must be unique. The following validation type was seen more than once: required
My case was that I had
.NotEmpty()
and
.NotNull()
at the same time, only one is needed.
If you are using FluentValidation side by side with DataAnnotations this can happen.
When FluentValidation is in action you may need to remove DataAnnotationsModelValidatorProvider from the registered ModelValidatorProviders in Application_Start method.
FluentValidationModelValidatorProvider.Configure();
// Remove data annotations validation provider
ModelValidatorProviders.Providers.Remove(
ModelValidatorProviders.Providers.OfType<DataAnnotationsModelValidatorProvider>().First());
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;
In my case I had added both NotEmpty and Length conditions to the validation rules at the same time.
RuleFor(x => x.Code).NotEmpty().Length(1, 10);
When I removed the NotEmpty condition the error disappeared.
Please, update the web.config file :
<configuration>
<appSettings>
<add key="ClientValidationEnabled" value="true"/>
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
</appSettings>
</configuration>