The NH trunk do no longer have dependency from Castle project; Castle.DynamicProxy2 are now only the default option. All dependency to Castle was moved to : NHibernate.ProxyGenerators.CastleDynamicProxy To continue working using lazy-loading, exactly as before, now you must deploy the default proxy generator...
Posted to
NHibernate blog
by
Fabio Maulo
on 10-11-2008
Filed under: proxy, lazy loading, ProxyGenerators, NHibernate, Deploy, Castle, NH2.1
I am pleased to announce the release of NHibernate ProxyGenerators 1.0.0 Beta. This release uses NHibernate 2.0.1 GA, allows you to specify a dialect to use when generating proxies (thank you Jaroslav Martásek), and includes example usage with ActiveRecord. Please visit NHForge.org for downloads...
I am pleased to announce the first release of NHibernate ProxyGenerators , the latest addition to the NHibernate Contrib project. NHibernate ProxyGenerators (NHPG) is a simple utility that you can use to pre-generate lazy loading proxies for use with NHibernate. Why would you want to...
In a comment to my post on lazy loading versus eager loading which you can find here I have been asked whether NHibernate 2.0 can now eagerly load an aggregate where the root has more than one child collection. The answer is yes but ... Let's discuss it with a sample. Imagine having the following...
In this article I want to discuss the lazy loading mechanism provided by NHibernate. It is recommended for maximum flexibility to define all relations in your domain as lazy loadable. This is the default behavior of NHibernate since version 1.2. But this can lead to some undesired effects if querying...