Tagged Questions

2
votes
1answer
26 views

Nhibernate.Util causing ProxyFactoryFactoryNotConfiguredException when configuration line exists in config

We're building a project using NHibernate and Castle with the Validators project. I'm trying to upgrade it to the latest supported version between all of those. I've gotten the application working ...
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
0answers
36 views

How to update schema when Validator attributes have changed?

I build my SessionFactory like this: _configuration = LoadConfiguration(configFile); if (_configuration == null) { Fluently.Configure() .Database(configurer.GetConfigurer()) ...
1
vote
2answers
132 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
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 ...
0
votes
1answer
218 views

nhibernate validator usage

Say I have a value object class, FullName, that is used as a property in an Employee entity class. The FullName may have a middle initial, nick name, etc; but from a domain perspective I would like to ...
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 ...
0
votes
1answer
659 views

System.NullReferenceException with WhoCanHelpMe Unit Test

I'm working with a test project based on WhoCanHelpMe, which is based on Sharp Architecture, NHibernateValidator, etc. As its written the when_the_profile_tasks_is_asked_to_create_a_profile unit test ...
0
votes
1answer
150 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 ...