NHibernate 3.3.3.GA is now available for download from Sourceforge and Nuget.
http://sourceforge.net/projects/nhibernate/?source=directory A big thanks to everyone that contributed to this release! Summary of changes: There is a good number of bug fixes in this release, as well as some new features, with some focus on complicated LINQ queries typically encountered when using WCF Data Services. It keeps the previous assembly version so it's a drop in replacement for 3.3.1 and 3.3.2. BEWARE: In versions prior to 3.3.3.CR1, the handling of the LINQ Take() method was flawed - no matter where in the query Take() was placed it was always applied as if it had been placed at the end. 3.3.3 fixes this, so that Take() now correctly follows the .Net semantics. That is, in 3.3.3, the following queries might now give different results: session.Query<Foo>.OrderBy(...).Take(5).Where(...); session.Query<Foo>.Where(...).OrderBy(...).Take(5); Starting with 3.3.3, the first query will generate a subquery to correctly apply the row limit before the where-clause. Full list of changes: [3.3.3GA] https://nhibernate.jira.com/issues/?jql=project%20%3D%20NH%20AND%20fixVersion%20in%20%28%223.3.3.CR1%22%2C%20%223.3.3.GA%22%29%20AND%20status%20in%20%28Resolved%2C%20Closed%29 /Oskar -- --- You received this message because you are subscribed to the Google Groups "nhibernate-development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
