Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I followed these tutorials:

http://www.asp.net/learn/mvc/tutorial-39-cs.aspx http://schotime.net/blog/index.php/2009/03/31/integrating-xval-validation-with-linq-to-sql/

in order to enforce data validation using Data Annotation for a LINQ-To-SQL-generated class. The metadata class looks like this:

[MetadataType(typeof(PositionValidation))]
public partial class Position
{
}

public class PositionValidation
{
    [Required]
    public string Title { get; set; }
}

The validation works correctly, but only if I do this in the controller:

if (ModelState.IsValid)
{
    _positions.AddPosition(newPosition);
    return RedirectToAction("List");
}

If I leave out the check for valid ModelState, it will attempt to add it to the database, even if Title is empty. As a result, I get an entry with a blank title (this applies to edits as well).

I was under the impression that data validation enforces it for the model side too, in addition to the controller/view. Does this mean that I have to add in additional code to do validation in the Position class too? If so, doesn't this violate DRY?

share|improve this question

1 Answer

So in other words (please let me know if I am wrong), you expected that your action was NOT executed at all if the Data Annotation validation failed. This was the only way to omit the if(Model.IsValid) statement.

Your assumption is not correct, and this is by design. It's a very nice feature in fact, not a nuisance. You add only a line of code, to check whether there are errors, and in return you get the possibility to:

  • add your own errors which come from the business logic, so they are displayed to the user immediately, and not upon the next submission, when the DA is ok
  • reset errors or customize errors
  • redirect to some other view, or do any action (e.g. logging) upon certain conditions
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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