Can anyone tell me which is a better approach for Validation in WPF.
in terms of performance, memory leaks, code maintainability and re-use.
This is kind of a complex request, and honestly it'll probably vary based on preference more than anything else. But, here's my understanding:
ValidationRules are older than IDataErrorInfo (I believe the latter was introduced in .Net 3.5). Based on this alone, it would seem that the WPF team prefers IDataErrorInfo. But the truth is they're built for different things. If you have MVVM or an equivalent pattern, IDataErrorInfo is superior for errors in the model (like, say, a negative age) whereas ValidationRules are superior for errors in the view (say, an age of ☃). It's of course possible to have the ValidationRules perform "business logic" checks, or to have the IDataErrorInfo tell you "a unicode snowman is not a valid age", but you'll (probably) get the best maintainability by keeping to this pattern.
But don't use exceptions for validation beyond the initial testing to see what exact conditions you should be testing for.
It is not good idea to use exception for error handling. Using exception will reduce performance. It is a matter of selecting and Implementing IDataErrorInfo or Creating ValidationRule.
IDataErrorInfo
Validation Rule
My opinion is, for common validation like required field validations, email address validattions you can use validation rule. If you need to do custom validations like range validations , or whatever custom validation use IDataerrorinfo.
I have a slightly different take on the topic, than the views presented in the other two answers:
ValidationRule
This is appropriate for validation that needs to be done before the source of a binding is updated. Reasons you might like to do this include being able to present a specific error message to the user, especially messages that relate to values before data conversion, or validating data that has to be converted.
As noted in other answers, it's also somewhat easier to share validation among multiple controls, as you can do things like create a single ValidationRule
which is used in multiple bindings, or use a BindingGroup
to provide a single ValidationRule
that checks multiple bindings at once.
IDataErrorInfo or INotifyDataErrorInfo
This puts validation into the view model, and is appropriate for scenarios where it is allowable for an illegal value to be stored in the view model. Specific error messages can be provided to the user via this interface.
Validation is available for any client of the view model implementation, providing better reuse for such validation.
Reuse of validation rules is somewhat less convenient, but not impossible by any means. You just need to implement your own helper methods or objects to perform the validation as you like.
Exceptions
The other answers eschew exceptions for validation, based on performance concerns. However, it's been my experience that exception handling in UI scenarios is generally just fine. In spite of the extra overhead of exception handling, it still happens way faster than the user is capable of noticing (unverified "anecdotes" notwithstanding).
One important aspect of exceptions is that it gives you much of the benefit of implementing an error-notification interface on your view model, while still preventing invalid values from being set on the view model properties. In other words, you may have validation scenarios where ValidationRule
happens too early and IDataErrorInfo
happens too late. Throwing exceptions from property setters would address those scenarios.
Bottom line: each validation technique has its own pros and cons, and is appropriate for specific scenarios. None are uniformly superior to any of the others. It depends a lot on what kind of validation you are trying to do, and where you want to see that logic executed.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With