Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
47  
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
5  
It is also interesting to note, that questions that are closed as not constructive usually have a lot of upvotes, so they actually ARE helpful to people. There has got to be something wrong with this thing – Dmitry Dec 26 '12 at 22:30
"closed as not constructive" ... i see plenty of facts in both answers below! – felickz Mar 8 at 16:14

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

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 26 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
share|improve this answer
2  
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. – CodesInChaos 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
1  
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

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).
share|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. – CodesInChaos Jul 24 '11 at 15:26
Um..no all of these are done better in Fluent Validation. – Kurian Mar 13 at 5:20

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