Tagged Questions
2
votes
2answers
258 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
415 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
1answer
126 views
NHibernate Validator initialization is very slow with ValidatorMode.OverrideAttributeWithExternal
Is there any way of speeding up the time NHibernate Validator takes to initialize when the default validator mode is set to ValidatorMode.OverrideAttributeWithExternal?
It takes over 11 seconds to ...
1
vote
1answer
189 views
NHibernate Validator: event listener regards attributes but not ValidationDefs
I have this entity in my project:
public class Employee : Entity
{
protected Employee()
{
Departments = new List<Department>();
}
[NotNullNotEmpty]
public virtual ...
0
votes
0answers
249 views
Schema validation HibernateException not caught by Try-Catch
I use SchemaValidator to check the integrity of the database. I thought I could put the validation in a try-catch, but it throws an exception that is not handled by the try-catch. Why is it not ...
0
votes
1answer
161 views
NHibernate DecimalMin Validator
I'm attempting to use the DecimalMin validator from NHibernates Validator library. Unfortunately, due to compiler restrictions I'm getting errors when attempting to utilize it. I'm sure its something ...