DRY Validation with MVC2

Posted by Matthew on Stack Overflow See other posts from Stack Overflow or by Matthew
Published on 2010-04-19T06:26:39Z Indexed on 2010/04/19 6:33 UTC
Read the original article Hit count: 1061

Filed under:
|
|

Hi All,

I'm trying to figure out how I can define validation rules for my domain objects in one single location within my application but have run in to a snag...

Some background: My location has several parts: - Database - DAL - Business Logic Layer - SOAP API Layer - MVC website

The MVC website accesses the database via the SOAP API, just as third parties would. We are using server and and client side validation on the MVC website as well as in the SOAP API Layer.

To avoid having to manually write client side validation we are implementing strongly typed views in conjunction with the Html.TextBoxFor and Html.ValidationMessageFor HTML helpers, as shown in Step 3 here. We also create custom models for each form where one form takes input for multiple domain objects.

This is where the problem begins, the HTML helpers read from the model for the data annotation validation attributes. In most cases our forms deal with multiple domain objects and you can't specify more than one type in the <%@Page ... Inherits="System.Web.Mvc.ViewPage" %> page directive. So we are forced to create a custom model class, which would mean duplicating validation attributes from the domain objects on to the model class.

I've spent quite some time looking for workarounds to this, such has referencing the same MetadataType from both the domain class and the custom MVC models, but that won't work for several reasons:

  1. You can only specify one MetadataType attribute per class, so its a problem if a model references multiple domain objects, each with their own metadata type.

  2. The data annotation validation code throws an exception if the model class doesn't contain a property that is specified in the referenced MetadataType which is a problem with the model only deals with a subset of the properties for a given domain object.

I've looked at other solutions as well but to no avail. If anyone has any ideas on how to achieve a single source for validation logic that would work across MVC client and server side validation functionality and other locations (such as my SOAP API) I would love to hear it!

Thanks in advance,

Matthew

© Stack Overflow or respective owner

Related posts about mvc

Related posts about validation