6 references to TestDbContext
Aspire.Hosting.SqlServer.Tests (6)
SqlServerFunctionalTests.cs (4)
83
hb.AddSqlServerDbContext<
TestDbContext
>(tempDb.Resource.Name);
107
var
dbContext = host.Services.GetRequiredService<
TestDbContext
>();
110
dbContext.Cars.Add(new
TestDbContext
.Car { Brand = "BatMobile" });
TestDbContext.cs (2)
10
public TestDbContext(DbContextOptions<
TestDbContext
> options) : base(options)
15
public DbContextOptions<
TestDbContext
> Options { get; }