Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a FluentNHibernate release that is compiled against NHibernate 3.2?
If not, will using assmeblyBinding from 3.1 to 3.2 work?

Thanks

share|improve this question

2 Answers

up vote 7 down vote accepted

If you are using NuGet and install the latest FNH package it is compatible with NH 3.2

http://nuget.org/List/Packages/FluentNHibernate/1.3.0.717

You'll need to install it via the command line in NuGet but this is what I've done and it works fine.

share|improve this answer

I am not aware of any new release. FNH 1.2 won't work with NH3.2 out of the box. you need to setup the binding in your app.config like this:

    <dependentAssembly>
        <assemblyIdentity name="NHibernate" publicKeyToken="aa95f207798dfdb4" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-3.2.0.4000" newVersion="3.2.0.4000" />
    </dependentAssembly>

FYI: i am using this setup

share|improve this answer
Does the same goes to the NHibernate.ByteCode.LinFu proxy factory? – sternr Nov 29 '11 at 12:57
Bytocode provider should be transparent to FHN so it should work. With FNH you just configure it like: .ProxyFactoryFactory("NHibernate.Bytecode.DefaultProxyFactoryFactory, NHibernate") – Boris Bucha Nov 29 '11 at 13:07
If you are using NuGet and install the latest FNH package it is compatible with NH 3.2 – Cole W Nov 29 '11 at 18:17
@Cole W: if this is true i think you should set this as normal answer for sternr to accept as the correct one – Boris Bucha Nov 29 '11 at 19:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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