vote up 0 vote down star

i have an asp.net mvc project with xval and data annotations and i need to switch to nhibernate validation

with data annotations i had an DataAnnotationsValidationRunner and i was doing something like this

  var errors = DataAnnotationsValidationRunner.GetErrors(this).ToList();

            if(errors.Any())
                throw new RulesException(errors);

how do you do that with nhibernate.validator ?

UPDATE: I saw something like this

 var engine = new ValidatorEngine();
            var errors = engine.Validate(objstovalid)

but i cannot do

if (errors.Any())
                throw new RulesException(errors);

because errors is not of the correct type (xVal.ServerSide.ErrorInfo)

flag

1 Answer

vote up 1 vote down check

As far as I know xVal used to provice a runner for NHibernate Validation, but it only worked on a previous version. To my knowledge there is no runner available for the current NHV version.

Just to clarify, do you still want to use xVal? If not then ignore the above, and run the validation on NHV like this:

var validator = new ValidatorEngine();
InvalidValue[] values = validator.Validate(theEntityYouWantToValidate);
link|flag
2  
The NHibernate ValidatorEngline doesn't throw exceptions as far as I know. It just returns an array of InvalidValues. You should be able to find ValidatorEngine and InvalidValue types in either the NHibernate.Validator or NHibernate.Validator.Engine Namespaces. – Sosh Nov 4 at 10:35
1  
So, to clarify, rather than dealing with an exception, you would just check the size of the invalidvalues array returned - if greater than z, loop through it and add the errors to your modelstate. – Sosh Nov 4 at 10:37
1  
You would run the validator, move any errors to the modelstate, then run your business rule validations (which might just be custom methods, or something else), and add any errors from that to the modelstate also. – Sosh Nov 4 at 12:00
1  
Yes, I becuase the xVal runner for NHV doesn't fully support the new version. I imagine this will be updated soon though (if the project is continued). By the way, just interested in your reasons for moving from DataAnnotations? – Sosh Nov 4 at 12:34
1  
You don't need the second param in the ValidationMessage Helper. It should display the message that is contained in your modelstate error collection. Check that you (or the library) is adding this info. E.g. modelState.AddModelError(... – Sosh Nov 4 at 15:16
show 9 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.