This is my code in C# NET 6
builder.Services.AddHangfire(x => x.UseSqlServerStorage(connectionstring));
builder.Services.AddHangfireServer();
...
app.UseHangfireDashboard();
The code runs without error, but the hangfire tables are not created
This is my code in C# NET 6
builder.Services.AddHangfire(x => x.UseSqlServerStorage(connectionstring));
builder.Services.AddHangfireServer();
...
app.UseHangfireDashboard();
The code runs without error, but the hangfire tables are not created