Hi,
I am using Adapter method and I am implementing a generic validation class that decends from ValidatorBase. This generic validator will take care of Nulls and Range Checking at an Entity level. I have found though that when a field value is set, the following method in EntityBase2 is called :
private bool ValidateValue(IEntityField2 fieldToValidate, object value, int fieldIndex)
This method does it's own range checking and effectively overrides my validator. Is there any way to override this behavior and leave all Field and/or Entity validation to an 'external' validation class?
Thanks,
Scott.