I have a website and multiple databases are attached to this one website. I access each database via a parameter in the URL.
I want to start a hangfire server for each of these databases.
I can easily read all the connection strings from the web.config.
To start a Hangfire server, do I just call Hangfire.GlobalConfiguration.Configuration.UseSqlServerStorage for each connection string? Or, do I call app.UseHangfireServer() with some sort of options for each server to start?