本文介绍了流利的nhibernate r1.0流利的映射禁用延迟加载的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在f1 r1.0中禁用延迟加载?

Configure()
.Database(
SQLiteConfiguration.Standard
.InMemory)
.Mappings(m => m.AutoMappings
.Add(AutoMap.AssemblyOf< _Field> ;()))
.Conventions
.Add(FluentNHibernate.Conventions.Helpers.DefaultLazy.Never())
.BuildSessionFactory();


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();

这篇关于流利的nhibernate r1.0流利的映射禁用延迟加载的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 02:53