gpt4 book ai didi

configuration - Fluent NHibernate 中的 NHibernate L2 缓存配置

转载 作者:行者123 更新时间:2023-12-03 01:32:55 24 4
gpt4 key购买 nike

是否可以通过 FHN 在代码中配置 L2 缓存提供程序?

我想要在以下配置中添加一行:

 return Fluently.Configure()
.Database(MsSqlConfiguration.MsSql2005.ConnectionString(c => c.FromConnectionStringWithKey("Temp")).ShowSql())
.Mappings(m => m.FluentMappings.AddFromAssemblyOf<IMap>())
.ExposeConfiguration(c => { })
.BuildSessionFactory();

干杯

AWC

最佳答案

这可以通过 FNH 实现,在下面的示例中请参阅“缓存”属性:

return Fluently.Configure(fileConfiguration)
.Database(MsSqlConfiguration
.MsSql2005
.ConnectionString(c => c.FromConnectionStringWithKey("Temp"))
.ShowSql()
.Cache(c => c.ProviderClass(typeof(NHibernate.Cache.HashtableCacheProvider).AssemblyQualifiedName)
.UseQueryCache()))
.Mappings(m => m.FluentMappings.AddFromAssemblyOf<IMap>())
.ExposeConfiguration(c => {
c.EventListeners.PostLoadEventListeners = new IPostLoadEventListener[] {new TestPostLoadListener()};
})
.BuildSessionFactory();

干杯

AWC

<小时/>

注意,对于 Fluent NHibernate >= 3.4.0.0,配置似乎略有不同。使用 http://nuget.org/packages/NHibernate.Caches.SysCache 中的 SysCache 的 nuget 包

return Fluently.Configure(fileConfiguration)
.Database(MsSqlConfiguration
.MsSql2005
.ConnectionString(c => c.FromConnectionStringWithKey("Temp"))
.ShowSql())
.Cache(c => c.ProviderClass<SysCacheProvider>().UseQueryCache())
.Mappings(m => m.FluentMappings.AddFromAssemblyOf<IMap>())
.ExposeConfiguration(c => {
c.EventListeners.PostLoadEventListeners = new IPostLoadEventListener[] {new TestPostLoadListener()};
})
.BuildSessionFactory();

关于configuration - Fluent NHibernate 中的 NHibernate L2 缓存配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2020730/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com