您好,我在 WPF 应用程序中使用 Fluent Nhibernate 和 SQLite。
Fluent Nhibernate 版本是“fluentnhibernate-NH3.1-1.2”,Sqlite 版本是“1.0.79”我的应用程序配置是
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Data.SQLite" publicKeyToken="DB937BC2D44FF139" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-1.0.79.0" newVersion="1.0.79.0"/>
</dependentAssembly>
</assemblyBinding>
*问题是他们处理非常慢的事务处理 3000 个事务需要 10 分钟才能完成 * 我使用 Journal_mode = off 并且效果很好但是当我尝试执行 *急切加载 * 500 kb 数据需要 5 分钟。