DataAnnotation plays a vital role in added validation to properties while designing the model itself. This validation can be added for both the client side and the server side.
You understand that decorating the properties in a model with an Attribute can make that property eligible for Validation.
Some of the data annotations used for validation are given below

- Required: Specify a property as required.
- RegularExpression: Specifies the regular expression to validate the value of the property.
- Range: Specifies the Range of values between which the property values are checked.
- StringLength: Specifies the Min & Max length for a string property.
- MaxLength: Specifies the Max length for the property value.
- MinLength: It is used to check for minimum length.
This article explains how to create our own Custom Validator Attribute and attach it to the properties.
![Validator Attribute]()
I am creating a Custom Validator that will validate the Customer Name property, whether all characters in the name are in upper case. The following is the procedure to create a Custom Validator.
- Create a class that will extend ValidationAttribute.
- Override the IsValid method. Write logic to check for upper case letters and return an error if a letter is not upper case else return ValidationResult as Success.
- Decorate the model property with the Custom Validator class name as in the following.
That's it; your Custom Validator is ready for validation. See the following code snippet.
Conclusion
I hope you liked this article about creating a Custom Validator and attaching it with a Model property. Please share your comments, it is valuable to me, and keep sharing no matter what.