I have an AddressValidator for an Address class, an RegistrationModel, which contains two instances of Address. Due to auto-wire-up, both addresses get validated the same way.
Is there a way to remove the default AddressValidator from affecting the addresses within the RegistrationModel? I wish to handle these differently.
Thanks