繁体   English   中英

无法找到 Net Core NHibernate System.Data.SQLite

[英]Net Core NHibernate System.Data.SQLite could not be found

我正在 Net Core 2.0 上编写控制台应用程序。 我的应用程序使用 NHibernate Fluent 来处理 SQLite 本地数据库。

这是我配置 NHibernate 的方式:

public class NHibernateHelper
{
    private static ISessionFactory _sessionFactory;

    public static ISession OpenSession()
    {
        var dbConnectionString = @"Data Source=|DataDirectory|\TestDb.sqlite;Version=3;Password=;Foreign Keys=True;Page Size=1024";

        _sessionFactory = Fluently.Configure().Database(SQLiteConfiguration.Standard.ConnectionString(dbConnectionString)
                .ShowSql())
            .Mappings(m => m.FluentMappings.AddFromAssemblyOf<NHibernateHelper>())
            .ExposeConfiguration(cfg => new SchemaExport(cfg)
                .Create(true, true))
            .BuildSessionFactory();

        return _sessionFactory.OpenSession();
    }

    public static void CloseSession()
    {
        _sessionFactory.Close();
        _sessionFactory.Dispose();
    }
}

当我尝试构建配置时,我收到一个异常: 在此处输入图片说明

我从 Nuget 添加了以下引用:

  • FluentNHibernate (2.1.2)
  • NHibernate (5.1.3)
  • System.Data.SQLite (1.0.108)

我的本地数据库是使用 SQLite Studio 创建的,数据库类型=System.Data.SQLite。

我做错了什么? 也许我使用了错误的提供商?

我找到了解决方案。


步骤 1在您的项目中使用包 [System.Data.SQLite.Core 1.0.109]。

步骤 2下载包 [System.Data.SQLite.Core 1.0.109.1]。

步骤 3将包 [System.Data.SQLite 1.0.109.1] 中的 [runtimes] 文件夹复制到您的项目文件夹,并使用以下文件映射。

[package]  -->  [project folder]
runtimes/win-x86/lib/netstandard2.0/SQLite.Interop.dll  -->  runtimes/win-x86/native/SQLite.Interop.dll
runtimes/win-x64/lib/netstandard2.0/SQLite.Interop.dll  -->  runtimes/win-x64/native/SQLite.Interop.dll
runtimes/linux-x64/lib/netstandard2.0/SQLite.Interop.dll  -->  runtimes/linux-x64/native/SQLite.Interop.dll
runtimes/osx-x64/lib/netstandard2.0/SQLite.Interop.dll  -->  runtimes/osx-x64/native/SQLite.Interop.dll

然后您的 *.csproj 文件应包含以下内容。

<ItemGroup>
    <None Update="runtimes\linux-x64\native\SQLite.Interop.dll">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
    <None Update="runtimes\osx-x64\native\SQLite.Interop.dll">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
    <None Update="runtimes\win-x64\native\SQLite.Interop.dll">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
    <None Update="runtimes\win-x86\native\nssm.exe">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
    <None Update="runtimes\win-x86\native\SQLite.Interop.dll">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
</ItemGroup>

第 4 步构建并运行您的应用程序。

PS :casue package [System.Data.SQLite.Core 1.0.109] is unlisted, you should use package [System.Data.SQLite.Core 1.0.109] by modify *.csproj file with text editor.

2020 年 7 月更新只需将 nuget 包System.Data.SQLite.Core添加到您的项目中,错误就会消失。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM