1 implementation of ITestDbContext
Aspire.Npgsql.EntityFrameworkCore.PostgreSQL.Tests (1)
TestDbContext.cs (1)
13public class TestDbContext : DbContext, ITestDbContext
6 references to ITestDbContext
Aspire.Npgsql.EntityFrameworkCore.PostgreSQL.Tests (6)
AspireEFPostgreSqlExtensionsTests.cs (2)
274builder.Services.AddDbContextPool<ITestDbContext, TestDbContext>(options => options.UseNpgsql(ConnectionString)); 297builder.Services.AddDbContextPool<ITestDbContext, TestDbContext>(options => options.UseNpgsql(ConnectionString));
EnrichNpgsqlTests.cs (4)
237builder.Services.AddDbContextPool<ITestDbContext, TestDbContext>(optionsBuilder => 246var context = host.Services.GetRequiredService<ITestDbContext>() as TestDbContext; 255builder.Services.AddDbContext<ITestDbContext, TestDbContext>(optionsBuilder => 268var context = host.Services.GetRequiredService<ITestDbContext>() as TestDbContext;