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 some properties we take this error:

Could not load type 'NHibernate.Bytecode.ProxyFactoryFactoryNotConfiguredException' from assembly 'NHibernate, Version=3.2.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4'.

Can someone help us ?

We don't know what is happening and looking some solution in web we found the nhibernate validator has a bug and we need to fix it or wait the next release, is that true?

Or if someone could recommend another good component to validate/binding on windows forms application with nhibernate, we really appreciate it.

Thanks!

link|improve this question

78% accept rate
What version of NHV are you using? – Thilak Nathen Sep 16 '11 at 19:59
feedback

2 Answers

up vote 1 down vote accepted

Looks like this is a known bug in the latest (1.3.1) version NHibernate Validator. You can

  • fix it yourself (source are available). Might be relatively easy.
  • use older version of NHibernate (3.1.0 for example should be compatible with your version of NHV).
  • encapsulate validation in your domain objects, which in turn will make them real objects as oppose to simple data containers.
link|improve this answer
Thank you @Dmitry, We got the sources and fixed it. :) – felipeoriani Sep 19 '11 at 12:29
@Dmitry. Objects can have lots of interesting behavior in addition to validation (and of course data). Some validation behaviors depend more on external factors, like the current culture, than the nature of the object itself. Using NHV's ability to 'extend' the object in a separate assembly using a consistent validation philosophy is a home run and very proper OO, IMO. – Berryl Sep 22 '11 at 14:34
This bug is relatively easy to fix which makes me wonder why it is still out there since May, 2011. Open source is open source, but I do wish NHV would get a little more love from its devs than it has in what is becoming a long time. – Berryl Sep 22 '11 at 14:37
feedback

Check the NHibernate version you're using. The NHV you're using is for NH 3.2.

link|improve this answer
I've been using the unique version that I found, version 1.3.1.4000, is there a version for nhibernate 3.2? where can I find it ? – felipeoriani Sep 16 '11 at 20:31
feedback

Your Answer

 
or
required, but never shown

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