我遵循的教程 - https://docs.hangfire.io/en/latest/getting-started/aspnet-core-applications.html
在启动类中配置服务
public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IBackgroundJobClient backgroundJobs)
{
app.UseHangfireDashboard();
backgroundJobs.Enqueue(() => Console.WriteLine("Hello world from Hangfire!"));
}
SqlException:无法打开登录请求的数据库“HangfireTest”。登录失败。用户“PENGUIN\PC”登录失败。
当我运行应用程序时出现此异常?