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)
275builder.Services.AddDbContextPool<ITestDbContext, TestDbContext>(options => options.UseNpgsql(ConnectionString)); 298builder.Services.AddDbContextPool<ITestDbContext, TestDbContext>(options => options.UseNpgsql(ConnectionString));
EnrichNpgsqlTests.cs (4)
239builder.Services.AddDbContextPool<ITestDbContext, TestDbContext>(optionsBuilder => 248var context = host.Services.GetRequiredService<ITestDbContext>() as TestDbContext; 257builder.Services.AddDbContext<ITestDbContext, TestDbContext>(optionsBuilder => 270var context = host.Services.GetRequiredService<ITestDbContext>() as TestDbContext;