首页 > 解决方案 > 找不到 Net Core NHibernate System.Data.SQLite

问题描述

我正在 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 添加了以下引用:

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

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

标签: c#sqlitenhibernate.net-core

解决方案


我找到了解决方案。


步骤 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 包 [System.Data.SQLite.Core 1.0.109] 未列出,您应该通过使用文本编辑器修改 *.csproj 文件来使用包 [System.Data.SQLite.Core 1.0.109]。


推荐阅读