5 references to MyDb1Context
SqlServerEndToEnd.ApiService (2)
Program.cs (2)
11builder.AddSqlServerDbContext<MyDb1Context>("db1"); 17app.MapGet("/", async (MyDb1Context db1Context, MyDb2Context db2Context) =>
SqlServerEndToEnd.Common (3)
Db1Migrations\20260511233127_Initial.Designer.cs (1)
14[DbContext(typeof(MyDb1Context))]
Db1Migrations\MyDb1ContextModelSnapshot.cs (1)
13[DbContext(typeof(MyDb1Context))]
MyDb1Context.cs (1)
8public class MyDb1Context(DbContextOptions<MyDb1Context> options) : DbContext(options)