I am about to implement a class to represent a validation error. The class would definitely contain a string value called Message, which is a default message to display to a user. I also need a way to represent what the validation error is to the programmer. The idea is that there should be an easy way to determine if a particular validation error occurred.

It would be simple to implement a string member called Type, but to determine if a ValidationError is of that type, I would need to remember the string that describes that type.

if (validationError.Type == "PersonWithoutSurname") DoSomething();

Clearly, I need something more strongly typed. An enumeration would be good:

if (validationError.Type == ValidationErrorType.PersonWithoutSurname) DoSomething();

But given the potentially hundreds of types of validation error, I could end up with an ugly enum with hundreds of values.

It also occurred to me to use subclassing:

if (validationError.GetType() == typeof(PersonWithoutSurnameValidationError)) DoSomething();

But then my class library is littered with hundreds of classes which will mostly be used once each.

What do you guys do? I can spend hours agonising over this sort of thing.

Answer go to whoever comes up with the suggestion I use. Enum suggestion is the one to beat.

link|improve this question

feedback

3 Answers

I use FluentValidation, where you can set up rules for each class, with default or customisable messages for each property.

Because it is a fluent framework, you can combine rules such as:

RuleFor(customer => customer.Address)
   .NotNull().Length(20, 250).Contains("Redmond")
   .WithMessage(@"Address is required, it must contain 
    the word Redmond and must be between 20 and 250 characters in length.");

Typical usage for a validator of the Customer class:

public class CustomerValidator: AbstractValidator<Customer> {
  public CustomerValidator() {
    RuleFor(customer => customer.Surname).NotEmpty();
    RuleFor(customer => customer.Forename).NotEmpty().WithMessage("Please specify a first name");
    RuleFor(customer => customer.Company).NotNull();
    RuleFor(customer => customer.Discount).NotEqual(0).When(customer => customer.HasDiscount);
    RuleFor(customer => customer.Address).Length(20, 250);
    RuleFor(customer => customer.Postcode).Must(BeAValidPostcode).WithMessage("Please specify a valid postcode");
  }

  private bool BeAValidPostcode(string postcode) {
    // custom postcode validating logic goes here
  }
}

Customer customer = new Customer();
CustomerValidator validator = new CustomerValidator();
ValidationResult results = validator.Validate(customer);

bool validationSucceeded = results.IsValid;
IList<ValidationFailure> failures = results.Errors;  
//Bind these error messages to control to give validation feedback to user; 
link|improve this answer
1  
So what would the code be to check the validation result to see if the customer's surname is empty? – David Jul 29 '10 at 15:59
The default for a string, which would be "{propertyname} cannot be empty.", Which would result in "Surname cannot be empty." – Daniel Dyson Jul 29 '10 at 16:03
You only put WithMessage if you want to override the default message. The default messages are help in a resx file so you can change these if you like. There are resx files with default messages for many languages too. – Daniel Dyson Jul 29 '10 at 16:04
Say if I have a Customer object and I'm checking it's in a valid state. I have a branch of code that is executed if the customer's Surname is empty. What do I write in my if condition? – David Jul 29 '10 at 16:06
I like the idea of the validation logic being in a separate class I must say. Tidy. – David Jul 29 '10 at 16:08
show 9 more comments
feedback

I seriously don't get why you getting into so much trouble....

If its validating fields that you are doing, then I usually add a regex validator & and a required field validator. For some fields I do add custom validator for my own set of rules. But that's it. For the client side as well as server side. All I do then is a page.validate command which if ever throws an error means the client script has been modified & I usually reload the page as response.

Also if I want to handle a check to single value I use

 System.Text.RegularExpressions.Regex.IsMatch(...

So Is there more to this?? If there is please point out.

link|improve this answer
He's trying to perform some action depending on specific types of validation. It's error handling, not the validation. The OP seems to have the validation rules down, but he is concerned he'll have enough possible validation errors that he wants to present those error type values in a consistant format. – AllenG Jul 29 '10 at 16:03
It's more about adding validation rules to the underlying domain entity than to the controls of the page. That way you can port your business layer to another front-end (e.g. from web to Windows) and the validity of your domain entities can still be easily checked. – David Jul 29 '10 at 16:03
Ohh thanks for letting me know that. Sry OP I guess I'm not helpful here. – loxxy Jul 29 '10 at 16:07
1  
Every response is useful. Your way of doing validation is just different to mine. Thanks! – David Jul 29 '10 at 16:08
feedback

If the question is storing the types (especially so you can add new ones) how about a config file in XML, or something database driven?

With an app.config you could have:

Which would get called in code:

//Generate the error somehow:
Validation.ErrorType = 
    ConfigurationManager.AppSettings["PersonWithoutSurnameValidationError"].Value;

//Handle the error
[Your string solution here]

This way, you get your error types documented somewhere outside your code so they're easier to remember. If, on the other hand, your main question is the storage so you can get the correct type to handle, stick with the enum.

link|improve this answer
With an app config file you lose the business layer portability than I'm on about, although of course I could just use an XML file embedded in the business layer project. I don't really need something I can edit on the fly, just something which is easy to use in code. – David Jul 29 '10 at 16:10
-1 for suggesting holding errors in the appsettings. You're probably better off storing it in a repository (database) or a .resx resource file. – Dan Atkinson Oct 6 '11 at 14:57
feedback

Your Answer

 
or
required, but never shown

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