Background:
I have a simple 2-level hierarchy for a data contract that I am validating using the Validation Application block that comes with Enterprise Library 5. I use HasSelfValidation to ensure that the object is validated in all calls that use it.
The base class definition is:
[DataContract(Namespace = Constants.Namespace)]
[KnownType(typeof(CreditCardAccount))]
[HasSelfValidation]
public abstract class Account
{
[DataMember]
[NotNullValidator(Ruleset = Ruleset.Create)]
[IgnoreNulls(Ruleset = Ruleset.Save)]
public string CreatedSource { get; set; }
[SelfValidation(Ruleset = Ruleset.Create)]
public virtual void Validate_OnCreate(ValidationResults validationResults)
{
Validator pValidator = new ObjectValidator(GetType(), Ruleset.Create);
Validate(pValidator, validationResults);
ValidateCreatedSource(validationResults);
}
private void Validate(Validator validator, ValidationResults validationResults)
{
ValidationResults valResults = validator.Validate(this);
validationResults.AddAllResults(valResults);
}
}
And the subclass definition is:
[DataContract(Namespace = Constants.Namespace)]
[XmlRoot(Namespace = Constants.Namespace)]
public class CreditCardAccount : Account
{
[DataMember]
[NotNullValidator(Ruleset = Ruleset.Create)]
[RegexValidator(Regex.Numeric, Ruleset = Ruleset.Create)]
[NotNullValidator(Ruleset = Ruleset.Save)]
[RegexValidator(Regex.Numeric, Ruleset = Ruleset.Save)]
public string LastFour { get; set; }
}
Problem:
The problem I'm running into is that the validation for Account is run twice when validating any calls where an instance of CreditCardAccount is passed. However, if I remove call to the Validate(Validator, ValidationResults) method in Account, then the validation for CreditCardAccount is never run.
Question:
How do I get the validation to run only once for properties in both CreditCardAccount and its base class Account?