从 DbProviderFactories.GetFactory() 获取 Sqlite

Get Sqlite from DbProviderFactories.GetFactory()

我需要 DbProviderFactories.GetFactory() return Sqlite 的提供程序。但是,我通过 NuGet 将 Sqlite 添加到我的项目中,并希望避免将其放入 GAC 并更新 machine.config。 Sqlite 的优点之一是无需配置。

但是,我有许多库从 GetFactory() 中提取连接器。

有办法吗?

谢谢 - 戴夫

您只需将 app.config 文件添加到您的项目,其中包含您要添加的不变量。

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.data>
    <DbProviderFactories>      
      <remove invariant="System.Data.SQLite"></remove>
      <add name="ADO.NET Provider for SQLite"
           invariant="System.Data.SQLite" 
           description="ADO.NET Provider for SQLite " 
           type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite">
      </add>          
    </DbProviderFactories>
  </system.data>
</configuration>

类型属性包含提供者工厂的命名空间和提供者本身的命名空间。

GetFactory 方法首先在您的本地 app.config 文件中查找,然后在您的 machine.config 中查找。只要确保您确实有对 SQLite 程序集的引用,就像您所做的那样。