Tagged Questions
10
votes
4answers
1k views
Which validation library for ASP.NET MVC?
I'm trying to decide what validation approach to take for a new ASP.NET MVC project. (And wow there are plenty of options!)
The project uses NHibernate, so the first thing I considered was the ...
2
votes
2answers
248 views
NHibernate Validator Dynamic rules
I'm using Nhibernate and I have a requirement that the validation rules must change in time. The framework I'll use is NHibernate validator, but I don't really know how to make dynamic rules, the ...
2
votes
1answer
413 views
NHibernate Validator - passing resource manager and key
According to the NHibernate Validator documentation here:
http://nhforge.org/wikis/validator/nhibernate-validator-1-0-0-documentation.aspx
I should be able to pass my resource manager so I can use ...
1
vote
2answers
113 views
Validation for Windows Forms Apps with Nhibernate
I've been using Nhibernate (with fluent nhibernate mapping) in a windows forms application and to do some validation and binding, I've been using NHibernate Validator too and when we try to validate ...
1
vote
3answers
255 views
NHibernate Validator and Schema Export question
I'm learning to use NHibernate validator and it's Fluent API (Loquacious).
I have noticed is that I can't set an integer property or nullable int property (int?) to be not nullable. Well, why not?
...
0
votes
0answers
68 views
ASP.NET MVC 3 with unobtrusive client side validation and NHibernate Validator
When I enable the jQuery unobtrusive client side validation in MVC 3 the messages that are displayed from NHibernate Validator don't show up correctly. Instead of translating the message from the ...
0
votes
1answer
192 views
Configuring Fluent NHibernate and NHibernate Validator
I am struggling to get Fluent NHibernate and the NHibernate Validator working together and there seems to be a lack of documentation on the internet about the best way to do this. I have found a few ...
0
votes
2answers
595 views
MVC 3, NHIbernate Validators & Message Interpolator
I have followed this article and have a passing test showing custom validation error messages being returned from a resource file when a call to Validator.IsValid(someEntity) fails.
I am trying to ...
0
votes
1answer
164 views
ValidatorEngine.Validate returns null (no error) if configured its ValidatorMode.UseExternal
i am integrating nhibernate validator into my application and and everything is fine with attributes
but as soon as I create *.nhv.xml files and move my validation rules there (as embedded resource)
...
0
votes
1answer
465 views
nhibernate validator newbie question
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 ...