Jason
Jason

Reputation:

Validation Framework for a WPF app (using MVP) and ASP.NET MVC

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

Answers (1)

UpTheCreek
UpTheCreek

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

Related Questions