I am running FluentValidation (v 8.6.3) along side FluentValidation.WebApi (v 8.6.1) on.Net 4.7.2 WebAPI stack.
Since the system is multitenant, I would like to inject a validation rule per tenant. While from the IoC side that is all wired up already (by implementing the IValidatorFactory), it looks like FluentValidationModelValidatorProvider calls it only once the first time and does not try again, while I need this to be triggered on every request as I determine the tentnat on a per request.
Does anyone know how one can force the validator provider to request factory each time so that it invokes the dependency resolver each time?