6 references to MyDbContext
WaitForSandbox.ApiService (2)
Program.cs (2)
11builder.AddNpgsqlDbContext<MyDbContext>("db"); 16app.MapGet("/", async (MyDbContext dbContext) =>
WaitForSandbox.Common (1)
MyDbContext.cs (1)
8public class MyDbContext(DbContextOptions<MyDbContext> options) : DbContext(options)
WaitForSandbox.DbSetup (3)
Program.cs (3)
7builder.AddNpgsqlDbContext<MyDbContext>("db"); 10using var db = scope.ServiceProvider.GetRequiredService<MyDbContext>();