1 implementation of ITestDbContext
Aspire.Microsoft.EntityFrameworkCore.Cosmos.Tests (1)
tests\Aspire.Npgsql.EntityFrameworkCore.PostgreSQL.Tests\TestDbContext.cs (1)
13public class TestDbContext : DbContext, ITestDbContext
7 references to ITestDbContext
Aspire.Microsoft.EntityFrameworkCore.Cosmos.Tests (7)
AspireAzureEfCoreCosmosDBExtensionsTests.cs (2)
166builder.Services.AddDbContextPool<ITestDbContext, TestDbContext>(options => options.UseCosmos(ConnectionString, "databaseName")); 189builder.Services.AddDbContextPool<ITestDbContext, TestDbContext>(options => options.UseCosmos(ConnectionString, "databaseName"));
EnrichCosmosDbTests.cs (5)
89builder.Services.AddDbContextPool<ITestDbContext, TestDbContext>(optionsBuilder => 97var context = host.Services.GetRequiredService<ITestDbContext>() as TestDbContext; 106builder.Services.AddDbContext<ITestDbContext, TestDbContext>(optionsBuilder => 118var context = host.Services.GetRequiredService<ITestDbContext>() as TestDbContext; 127builder.Services.AddDbContextPool<ITestDbContext, TestDbContext>(optionsBuilder =>