Framework validation for a WPF application (using MVP) and ASP.NET MVC

I am looking for a form validation framework that works best on both Windows (WPF using MVP) and Web (ASP.NET MVC).

I am currently looking at three options:

I like Fluent Validation because it looks a lot cleaner. Others, however, have been longer.

Any other recommendations?

+3
source share
1 answer

In MVC applications, I found that Fluent Validation is very useful for more complex validations. DataAnnotations are often enough for simple checks in MVC.

+2
source

Source: https://habr.com/ru/post/1725372/


All Articles