I've been developing a web application with asp.net mvc, nhibernate and ddd concepts.

I've developed validations with Fluent Validation for my domain classes and it works fine. Well, now, I need a ViewModel to edit an entity in a View, soo, my question is, Do I need to create another validation class to validate my viewmodel? Or what should I do to get around this situation?

I ask it because I don't want to broke the DRY (don't repeat yourself) concetp.

Thanks!

link|improve this question

79% accept rate
feedback

1 Answer

up vote 5 down vote accepted

Domain level validation, and View-Model validation are quite different imho (although they can have lots of overlap).

For instance, it may be perfectly allowable to have a certain field as null in your database, but require it's input on certain webforms. In this case you would check for null within the Model validation.

It would also be quite normal for multiple client applications to share the same Domain controllers (via WCF for example), but to possess different application validation logic.

If you use DataAnnotations in your view model you can get client-side javascript validation for free, so as a general rule, I always have a separate ViewModel from my Domain objects, even if it's a 1:1 mapping - I just use AutoMapper to translate between them. In addition to getting the client-side validation, it also reduces the clutter within the Domain validation.

link|improve this answer
Well, I'll develop some validation for my viewmodel then. Fluent Validation has a great integration with asp.net mvc (it overrides dataannotations). There's some validations that make some hits in database (custom validations that use my repositories). These validations should be on Domain model or ViewModel, or both? if is in both, My validation will do 2 hits on database to make the same validation? Cheers! (I'll use AutoMapper too) – felipeoriani Jul 20 '11 at 18:29
feedback

Your Answer

 
or
required, but never shown

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