Reputation:
I'm looking for a form validation framework that works best in both Windows (WPF using MVP) and Web (ASP.NET MVC).
I'm currently looking at three choices:
I like Fluent Validation as it looks a lot cleaner. The others, though, have been around longer.
Any other recommendations?
Upvotes: 3
Views: 528
Reputation: 32391
In MVC apps I've found Fluent Validation very useful for more complex validations. DataAnnotations are often enough for simple validations in MVC.
Upvotes: 2