I am seeing a lot of messages about overloading the "AddValidationRules()" method but I don't know where it goes?
protected override void AddValidationRules()
{
base.AddValidationRules();
//Add custom validation rules
}
I have created a custom class based on an auto generated Entity class (public class Unit : NetTiers.Entities.Unit) but the extra validation rules I implemented are not being called when I save the entity.