1 implementation of ITestDbContext
Aspire.Azure.Npgsql.EntityFrameworkCore.PostgreSQL.Tests (1)
tests\Aspire.Npgsql.EntityFrameworkCore.PostgreSQL.Tests\TestDbContext.cs (1)
13public class TestDbContext : DbContext, ITestDbContext
6 references to ITestDbContext
Aspire.Azure.Npgsql.EntityFrameworkCore.PostgreSQL.Tests (6)
AspireAzureEFPostgreSqlExtensionsTests.cs (2)
275builder.Services.AddDbContextPool<ITestDbContext, TestDbContext>(options => options.UseNpgsql(ConnectionString)); 298builder.Services.AddDbContextPool<ITestDbContext, TestDbContext>(options => options.UseNpgsql(ConnectionString));
EnrichNpgsqlTests.cs (4)
240builder.Services.AddDbContextPool<ITestDbContext, TestDbContext>(optionsBuilder => 249var context = host.Services.GetRequiredService<ITestDbContext>() as TestDbContext; 258builder.Services.AddDbContext<ITestDbContext, TestDbContext>(optionsBuilder => 271var context = host.Services.GetRequiredService<ITestDbContext>() as TestDbContext;