I have the following situation: A domain model that has a property BithDay. I want to be able to verify that the age (that will be computed accordingally to the birthday) is lower than 150 years. Can I do that by using the built in validtors or I have to build my own? Can someoane provide me an example of DomainValidator?
Validate age by date of birth using Enterprise Library Validation Application Block
357 Views Asked by MariaMadalina At
2
There are 2 best solutions below
0

You can try something like this:
public class Person
{
public DateTime BirthDate { get; set; }
[RangeValidator(0, RangeBoundaryType.Inclusive, 150, RangeBoundaryType.Exclusive,
MessageTemplate="Person must be less than 150 years old.")]
public int Age
{
get { return (DateTime.Now - this.BirthDate).Days / 365; }
}
}
You can use a
RelativeDateTimeValidator
to validate an age based on a Birth Date. For example:This will print: "Person must be less than 150 years old."