I am using LLBLGen 2.6 Final, Self servicing two class, .Net Framework 3.5 C#.
I am using DI and validator classes (derived from ValidatorBase class) to do some validation before saving an entity. So I am overriding ValidateEntityBeforeSave method to achieve this.
My problem is, ValidateEntityBeforeSave method is automatically called when I call the save() method on the entity when adding a new record (entity) but not when updating a record?
Why does not ValidateEntityBeforeSave method get called when updating?