Creating Custom Validators
You can easily add custom validation by creating an attribute with an IsValid
method that accepts the value to be validated as the first parameter. There is no need to implement any interface — just decorate your custom attribute with the [Validator]
attribute, allowing the Source Generator to discover it easily (performance optimization).
Here's an example:
Method Parameters
You can use method parameters for dependency injection, allowing you to retrieve services directly from the service provider.
Return Value
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