Tagged Questions

0
votes
1answer
11 views

How to use Nhibernate Validator + NHib component + ddl

I just configured my NHibValidator. My NHibernate creates the DB schema. When I set MaxLenght="20" to some property of a class then in the database the length appears in the database column. I am …
8
votes
4answers
318 views

Which validation library for ASP.NET MVC?

Hi, 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 …
0
votes
1answer
62 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 …
2
votes
1answer
77 views

NHibernate Validator - passing resource manager and key.

Hi, 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 …
3
votes
2answers
194 views

xVal in MVC.NET with nHibernate.validator does not fire client validation

I have an ASP.NET MVC Project working with NHibernate and NHibernate.Validator and i'd like to use xVal 1.0 (most recent release). I Added the requested scripts to the project and referenced it in …
0
votes
1answer
81 views

Configuring NHibernate Validator on a Burrow ASP.net Application

I'm looking for the best way to configure NHibernate Validator on a classic ASP.net app that is using NHibernate Burrow to manage NH sessions. How do I get it to register the interecptors …
0
votes
1answer
29 views

Dual NHibernate Class Level Validators Issue

I'm using WPF and I've got an Entity bound to a series of controls. The entity is decorated with two class level validators as follows: [ExampleValidator1, ExampleValidator2] public class Entity An …