I was searching for a validation framework for .NET. I saw a few, but I didn't see any comparisons. Which one do you prefer to use, and why?
feedback
|
|
I use my own validation framework because all of the ones I've seen online (including both the Microsoft Validation Application Block and EViL) treat validity as a boolean value.
The key, in my opinion anyway, is that validation can't be entirely evaluated by your code - there will often (usually!) be aspects that have to be evaluated by the end user. In effect, you'll need to be relying on the judgment of your users. What you need to do is to prevent them from making serious errors (like leaving a delivery address off an order) and provide them with guidance to avoid other issues. So, my validation uses Error for fatal issues that prevent further progress; Warning for serious issues that the user should consider, and Hint for guidance to help the user out. And, yes, those labels were inspired by compiler messages. | |||||||||
feedback
|
|
When you're looking for validation of method arguments, look at CuttingEdge.Conditions. It allows you to write code like this:
| |||
|
feedback
|
|
I like the easy approach of the Fluent Validation framework. You find it on codeplex at: http://fluentvalidation.codeplex.com/ You can gain the separation between entities and validators that you cannot get with Annotations (e.g.: Enterprise Library). Hope it helps | |||
|
feedback
|
|
If you mean for ORMs then:
ASP.NET already has a fairly decent one built in. If you are happy with client side form validation, there's a decent JQuery plugin to do it. You just give your input field classes for the type of validation you want, and call validate:
Windows forms already has built in regex, and WPF I don't know about. | |||
feedback
|
|
The Validation Application Block covers a wide range of validation cases, a little bit heavy though | |||
|
feedback
|
|
| |||
|
feedback
|