Which approach for ASP.NET MVC validatation do you prefer and why? Fluent Validation? Data annotations? Any other?

link|improve this question

18  
I hate this "not constructive" thing about StackExchange. I'm pretty sure StackOverflow is the best place to ask this kind of questions as here are a lot of people with real experience and huge knowledge. – Idsa Jul 24 '11 at 16:00
feedback

closed as not constructive by Julien Lebosquain, tvanfosson, jfar, C. A. McCann, Graviton Jul 26 '11 at 1:59

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

up vote 14 down vote accepted

I prefer Fluent Validation:

  1. It gives me far better control of my validation rules
  2. Doing conditional validation on different properties is so much easier compared to Data Annotations
  3. It separates the validation from my view models
  4. Unit testing is far easier compared to Data Annotations
  5. It has excellent client side validation support for most standard validation rules
link|improve this answer
Some more points from this (webdevbros.net/2010/12/03/…) article: 1. Too many annotations make your model s look ugly (similar to your point 3) 2. Better reusability 3. Better performance (as no Reflection) – Idsa Jul 24 '11 at 15:41
@Idsa The performance point sounds dubious. The reflection only needs to happen once per model. This assumes a good implementation, I don't know how this particular implementation works. – CodeInChaos Jul 24 '11 at 15:49
@CodeInChaos, looks like you are right. But I will keep it there as I am also not sure (and lazy enough to find out) how it is implemented. – Idsa Jul 24 '11 at 15:55
I second the FluentValidation...it rocks. From a code OCD perspective I love that it removes the responsibility of validation from the views and gives it their own classes. I tried xVal for awhile back in MVC1...Data Annotations were alright for simple stuff, but once you got more than a handful of rules you could barely tell what the ViewModel was supposed to represent. – Brandon Linton Jul 25 '11 at 1:21
feedback

I clearly prefer Data Annotations because ...

  1. all validation rules can be configured in one place in code (within the model metadata class) and don't need to be repeated anywhere else.
  2. there is excellent support for client side validation (again – without repetition of validation rules!) when using Data Annotation attributes.
  3. Data Annotation attributes can be tested to ensure they're there.
  4. there are nice additional validation attributes created by the community (e.g. Data Annotations Extensions).
link|improve this answer
I think most of these properties can be achieved with some form of fluent validation. I don't know if the library in the OP supports this, but in principle it's possible, and not very hard either. – CodeInChaos Jul 24 '11 at 15:26
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.