Hello all,
Sorry if this has been done to death, I've had a search on the forums but I'm confusing myself.
I'm applying validation on an entity.
So I've created a validator class for that entity.
<DependencyInjectionInfo(GetType(myEntity), "Validator", _
ContextType:=DependencyInjectionContextType.Singleton)> _
Public Class myValidator
Inherits ValidatorBase
I've seen that LLBLGEN has a build-in validation logic that throws an ArgumentOutOfRangeException if there is an error.
I'm trying to figure out how i can inherit this build-in validation into myValidator so that i can build up a list of validation errors and display them instead of one at a time for the ArgumentOutOfRangeException ?