Open
Description
I moved from a single databases to the per-tenant database in a Blazor Server-side app. Currently I have:
services.AddDbContextFactory<AppContext>(options =>
{
options.UseSqlServer(configuration.GetConnectionString("App"));
});
But now how am I going to change the above service registration to use the per-tenant connection string?