vote up 4 vote down star
2

I have a class Employee. I want to be able to Validate() it before I save it to make sure all the fields have been populated with valid values. The user of the class may call Validate() before they call Save() or they may call Save() directly and Save() will then call Validate() and probably throw an Exception if validation fails.

Now, my (main) question is this;
If my Validate() function returns a simple bool then how do I tell the user of the class what is wrong, i.e. "Email not filled in", "ID not unique" etc. For the purposes of this I just want the error strings to pass to the human user, but the principle is the same if I wanted a list of error codes (except that makes the use of a bitmap more logical).

  • I could use an Out paramater in my Validate function but I understand this is frowned upon.
  • Rather than returning a bool, I could return a string array from my function and just test if it was empty (meaning no errors) - but that seems messy and not right.
  • I could create a Struct just to return from this method, including a bool and a string array with error messages, but just seems clunky.
  • I could return a bitmap of error codes instead of a bool and look it up, but that seems rather excessive.
  • I could create a public property "ValidationErrors" on the object which would hold the errors. However, that would rely on me calling Validate() before reading it or explicitly calling Validate from the Property() which is a bit wasteful.

My specific program is in C# but this looks like a fairly generic "best practice" question and one I am sure I should know the answer to. Any advice gratefully received.

flag

80% accept rate

9 Answers

vote up 4 vote down check

I would probably go for the bitmap-option. Simply

[Flags]
public enum ValidationError {
    None = 0,
    SomeError = 1,
    OtherError = 2,
    ThirdError = 4
}

...and in the calling code, simply:

ValidationError errCode = employee.Validate();
if(errCode != ValidationError.None) {
    // Do something
}

Seems nice and compact to me.

link|flag
+1 - You beat me to it. – Fredrik Mörk Jun 25 at 12:21
You are right, I should be structured about my error messages and have a central repository for them where I can look them up for the "user friendly" version etc. – Frans Jun 25 at 15:10
vote up 5 vote down

I could create a Struct just to return from this method, including a bool and a string array with error messages, but just seems clunky.

Why does it seem clunky? Creating an appropriate type to encapsulate the information is perfect. I wouldn't necessarily use a string to encode such information, though. An enum may be better suited.

An alternative would be to subclass the return type and provide an extra child class for every case – if this is appropriate. If more than one failures may be signalled, an array is fine. But I would encapsulate this in an own type as well.

The general pattern could look like this:

class ValidationInfo {
    public bool Valid { get; private set; }
    public IEnumerable<Failure> Failures { get; private set; }
}
link|flag
vote up 1 vote down

I would follow the pattern of the TryParse methods and use a method with this signature:

public bool TryValidate(out IEnumerable<string> errors) { ... }

Another option is to pull the validation code out of the object into its own class, possibly building on the Specification pattern.

public class EmployeeValidator
{
    public bool IsSatisfiedBy(Employee candidate) 
    { 
        //validate and populate Errors 
    }
    public IEnumerable<string> Errors { get; private set; }
}
link|flag
vote up 0 vote down

We are using spring validation together with an Windows Forms error provider.

So our validation function returns a dictionary with a control id and an error message (for every validation error). The error provider shows the error message in a pop up field near the control which caused the error.

I used some other validation schemes in the past - but this one works really well.

link|flag
vote up 1 vote down

I have found it a good approach to simply have a method (or a property, since C# has nice support for that) which returns all validation error messages in some kind of sensible, easy to use format, such as a list of strings.

This way you can also keep your validate method returning bools.

link|flag
vote up 2 vote down

Sounds like you need a generic class:

public sealed class ValidationResult<T>
{
    private readonly bool _valid; // could do an enum {Invalid, Warning, Valid}
    private readonly T _result;
    private readonly List<ValidationMessage> _messages;

    public ValidationResult(T result) { _valid = true; _result = result; _messages = /* empty list */; }

    public static ValidationResult<T> Error(IEnumerable<ValidationMessage> messages)
    {
        _valid = false;
        _result = default(T);
        _messages = messages.ToList();
    }

    public bool IsValid { get { return _valid; } }
    public T Result { get { if(!_valid) throw new InvalidOperationException(); return _result; } }
    public IEnumerable<ValidationMessage> Messages { get { return _messages; } } // or ReadOnlyCollection<ValidationMessage> might be better return type

    // desirable things: implicit conversion from T
    // an overload for the Error factory method that takes params ValidationMessage[]
    // whatever other goodies you want
    // DataContract, Serializable attributes to make this go over the wire
}
link|flag
I would just add maybe a reference to what failed, if it was attribute level rule that faild then reference to that property, if it was entity wide then reference to entity etc. – epitka Jun 25 at 12:36
vote up 1 vote down

You could take a look at Rockford Lhotka's CSLA which has extensive business rule/validation tracking forr business objects in it.

www.lhotka.net

link|flag
vote up 1 vote down

I agree with Chris W. I asked the same questions, before reading Rocky`s Expert C# Business Objects.

He has a brilliant way of handling business validation rules. The validation is done after each property is set. Whenever a rule is broken, the object`s state become InValid.

Your business class can implement the IDataError interface. Binding your UI controls to your business object properties will then notify your ErrorProvider control of any broken rules on your object.

I would really recommend you take the time and look at the validation section.

link|flag
vote up 2 vote down

Here is an excerpt from Scott Hanselman's nerddinner.com (code can be downloaded from CodePlex at nerddinner.codeplex.com)

I think this is one of the best ways of doing this

public bool IsValid
{
    get { return (GetRuleViolations().Count() == 0); }
}

public IEnumerable<RuleViolation> GetRuleViolations()
{

if (String.IsNullOrEmpty(Title))
    			yield return new RuleViolation("Title is required", "Title");

if (String.IsNullOrEmpty(Description))
    			yield return new RuleViolation("Description is required", "Description");

if (String.IsNullOrEmpty(HostedBy))
    			yield return new RuleViolation("HostedBy is required", "HostedBy");

if (String.IsNullOrEmpty(Address))
    			yield return new RuleViolation("Address is required", "Address");

if (String.IsNullOrEmpty(Country))
    			yield return new RuleViolation("Country is required", "Country");

if (String.IsNullOrEmpty(ContactPhone))
    			yield return new RuleViolation("Phone# is required", "ContactPhone");

if (Latitude == 0 || Longitude == 0)
    			yield return new RuleViolation("Make sure to enter a valid address!", "Address");

    		//TODO: For now, PhoneValidator is more trouble than it's worth. People 
    		// get very frustrated when it doesn't work.
    		//if (!PhoneValidator.IsValidNumber(ContactPhone, Country))
    		//    yield return new RuleViolation("Phone# does not match country", "ContactPhone");

yield break;
}

partial void OnValidate(ChangeAction action)
{
if (!IsValid) throw new ApplicationException("Rule violations prevent saving");
}
link|flag
I really like this approach, very neat. In my case it has a slight drawback as the user is likely to first check IsValid and then enumerate over the validation errors. This is fine here but I need to do checks against a database as well, so would be better to only run the validation code once. However, very neat solution, like it +1. – Frans Jun 25 at 15:09
I thought about the performance thing and agree with you. This method works in the above context because the checks are all based on process variables. You'd probably have to find a way to encapsulate your database calls to save them to an object instance that lasts the lifetime of your validation checks (and probably have a local cacheInvalidation flag to indicate when the underlying data has changed). Anyway good luck – Neil Jun 25 at 21:31

Your Answer

Get an OpenID
or

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