Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NHibernate.ByteCode.LinFu.dll For NHibernate 3.2

Tags:

Where can I find the latest version of NHibernate.ByteCode.LinFu.dll that is compiled against NHibernate 3.2?

like image 752
sternr Avatar asked Nov 27 '11 16:11

sternr


2 Answers

in NHibernate 3.2 you do not need NHibernate.ByteCode.LinFu.dll because NHibernate 3.2 implements the proxy by itself. so we need modify the config like as:

<property name=”proxyfactory.factory_class”>NHibernate.Bytecode.DefaultProxyFactoryFactory, NHibernate</property> 
like image 111
imzrh Avatar answered Oct 21 '22 05:10

imzrh


From 3.2, NHibernate ha its own embedded proxy generator: there are nо more need of NHibernate.ByteCode.LinFu.dll or NHibernate.ByteCode.Castle.dll and I don't think they are supported any more.

I think you have to download the last supported source of NHibernate.ByteCode.LinFu.dll source, and try to compile it against the 3.2.

like image 22
Michele Lepri Avatar answered Oct 21 '22 04:10

Michele Lepri