how to disable lazy loading in fn r1.0?
Fluently.Configure() .Database( SQLiteConfiguration.Standard .InMemory) .Mappings( m => m.AutoMappings .Add( AutoMap.AssemblyOf<_Field>() ) ) .Conventions .Add( FluentNHibernate.Conventions.Helpers.DefaultLazy.Never() ) .BuildSessionFactory();
You can try with:
Not.LazyLoad();
inside your mapping constructor.
Like this:
References(x => x.Something).Not.LazyLoad();