首页 > 解决方案 > 在内存中使用 SQLite 运行 EF Core - 未配置数据库提供程序

问题描述

我正在使用带有 SQL 服务器的 EF Core 和用于 IOC 的 StructureMap 编写一个 ASP.Net Core Web API。库项目都是.NetStandard2.0,而 API 和单元测试是NetCoreApp2.0.

对于单元测试,我正在运行 XUnit 并将 SQL Server 换成内存中的 SQLite db,因为它提供了完整的引用完整性。我仍然使用与我的主代码相同的 IOC 设置,但我传入了一个结构映射注册表列表,以允许我在 SQLite 上下文工厂而不是 sql 中进行替换。

这是我的 DbContext 的精简版:

public class MyDbContext : DbContext
{
    public MyDbContext(DbContextOptions options) : base(options)
    {
    }
}

这是我的测试设置代码:

public IServiceProvider ServiceProvider { get; set; }

public MyServiceTests()
{
    var services = new ServiceCollection();
    var dataRegistry = new Registry();

    dataRegistry.For<IContextFactory<MyDbContext>>().Use<SqlLiteContextFactory>();

    if (SqlLiteContextFactory.Connection == null)
    {
        SqlLiteContextFactory.Connection = new SqliteConnection("DataSource=:memory:");
        SqlLiteContextFactory.Connection.Open();
    }

    services
        .AddEntityFrameworkSqlite()
        //This is only here as some posts suggested this was needed, StartUp.cs for production site does not have this and works fine.
        .AddDbContext<MyDbContext>(options => options.UseSqlite(SqlLiteContextFactory.Connection));

    var registries = new List<Registry>
    {
        dataRegistry,
        new CommandQueryRegistry(),
        new ServiceRegistry(),
        new TransformRegistry()
    };

    ServiceProvider = DependencyInjection.TestSetup(services, registries);
}

IOC 初始化代码相当基本:

public static IServiceProvider TestSetup(IServiceCollection services, List<Registry> registries)
{
    var container = new Container();

    var registry = new Registry();
    registries.ForEach(r => registry.IncludeRegistry(r));

    container.Configure(config =>
    {
        config.AddRegistry(registry);
        config.ForSingletonOf<IHttpContextAccessor>().Use<HttpContextAccessor>();
        config.Populate(services);
    });

    var serviceProvider = container.GetInstance<IServiceProvider>();
    return serviceProvider;
}

这是我的 SQLite 上下文工厂的上下文工厂代码,它与 SQL 的唯一区别是我拥有静态Connection属性,以确保在处理上下文后不会丢失数据库。

public class SqlLiteContextFactory : IContextFactory<MyDbContext>
{
    public static SqliteConnection Connection;

    private DbContextOptions<MyDbContext> CreateOptions(bool trackChanges)
    {
        var builder = new DbContextOptionsBuilder<MyDbContext>();
        var optionsBuilder = new DbContextOptionsBuilder<MyDbContext>();
        optionsBuilder.UseSqlite(Connection);

        if (!trackChanges)
        {
            builder.UseQueryTrackingBehavior(QueryTrackingBehavior.NoTracking);
        }

        return builder.Options;
    }

    private MyDbContext CreateDbContext(bool trackChanges)
    {
        if (Connection == null)
        {
            Connection = new SqliteConnection("DataSource=:memory:");
            Connection.Open();
        }            

        var context = new MyDbContext(CreateOptions(trackChanges));

        //Always keep context as most recent version in tests
        context.Database.Migrate();

        return context;
    }

    public MyDbContext CreateNonTrackedContext()
    {
        return CreateDbContext(false);
    }

    public MyDbContext CreateDbContext()
    {
        return CreateDbContext(true);
    }
}

问题

我的代码在运行站点时运行良好,SQL 上下文工厂创建上下文并运行 migrate 命令创建数据库没有问题。但是,当我尝试通过单元测试来测试我的任何服务时,上下文工厂会在尝试Migrate使用以下内容运行时崩溃:

System.InvalidOperationException : No database provider has been configured for this DbContext. A provider can be configured by overriding the DbContext.OnConfiguring method or by using AddDbContext on the application service provider. If AddDbContext is used, then also ensure that your DbContext type accepts a DbContextOptions<TContext> object in its constructor and passes it to the base constructor for DbContext.
   at Microsoft.EntityFrameworkCore.Internal.DbContextServices.Initialize(IServiceProvider scopedProvider, IDbContextOptions contextOptions, DbContext context)
   at Microsoft.EntityFrameworkCore.DbContext.get_InternalServiceProvider()
   at Microsoft.EntityFrameworkCore.RelationalDatabaseFacadeExtensions.GetRelationalService[TService](IInfrastructure`1 databaseFacade)
   at Microsoft.EntityFrameworkCore.RelationalDatabaseFacadeExtensions.Migrate(DatabaseFacade databaseFacade)
   at API.Test.Utilities.SqlLiteContextFactory.CreateDbContext(Boolean trackChanges) in API.Test\Utilities\SqLiteContextFactory.cs:line 37
   at API.Test.Utilities.SqlLiteContextFactory.CreateDbContext() in API.Test\Utilities\SqLiteContextFactory.cs:line 49
   at API.CommandQueries.Commands.MyCommand.AddOrUpdate(MyModel model) in \API.CommandQueries\Commands\MyCommand.cs:line 21
   at API.Services.MyService.Save(Model model) in API.Services\MyService.cs:line 40
   at API.Test.MyTests.CanAdd() in API.Test\MyServiceTests.cs:line 47

对于这个问题,我已经尝试了所有能找到的解决方案。添加.AddDbContext到服务集合中。确保测试项目和上下文项目都引用了EntityFrameworkCoreEntityFrameworkCore.RelationalEntityFrameworkCore.Sqlite。确保 SQLite 连接保持活动状态并确保测试设置.AddEntityFrameworkSqlite()ServiceCollection.

我还尝试使用另一个上下文工厂将 SQLite 换成 EF Cores InMemoryDb,但由于完全相同的问题而失败。

之前有没有其他人看到过这个问题,或者我是否以某种方式使用 EF Core,导致它以某种方式与 SQLite 不兼容?

标签: c#entity-frameworksqliteentity-framework-coreasp.net-core-2.0

解决方案


我在这方面工作了一段时间。而且我相信您需要运行迁移并保持连接打开。您正在覆盖连接静态。另外,我不确定它是在您使用连接之前创建的。


推荐阅读