CustomValidation Attribute
Whenever custom logic is needed to validate a property — for instance, a complex condition involving multiple properties — you can use the CustomValidationAttribute
. By adding [CustomValidation]
to a property, an interface with a method specific to custom validation for that property will be generated, which you then implement within your Object. This method is called during validation just like standard validators. As an instance method, it provides access to the entire Object, allowing you to define any necessary conditions.
You’re free to customize the method’s signature to suit your needs—Validly will automatically update the generated interface to reflect your changes.
Method Parameters
You can use method parameters for dependency injection, allowing you to retrieve services directly from the service provider.
Return Type
The validation method supports a variety of return types, offering maximum flexibility to fit your workflow:
Single Message or Validation result:
ValidationMessage?
Validation.Error(), Validation.Success()
Collection of Messages:
IEnumerable<ValidationMessage>
Asynchronous Variants:
IAsyncEnumerable<ValidationMessage>
Task<ValidationMessage?>
Task<Validation>
ValueTask<ValidationMessage?>
ValueTask<Validation>
This versatility means you can write validation logic synchronously or asynchronously, handle single errors or multiple.
Last updated