Hangfire.EntityFrameworkCore icon indicating copy to clipboard operation
Hangfire.EntityFrameworkCore copied to clipboard

An Entity Framework Core provider-neutral job storage implementation for Hangfire (https://www.hangfire.io).

Results 11 Hangfire.EntityFrameworkCore issues
Sort by recently updated
recently updated
newest added

if I do this: ```csharp services.AddHangfire((serviceProvider, hangfireConfig) => hangfireConfig.UseEFCoreStorage( serviceProvider.GetRequiredService, new EFCoreStorageOptions { Schema = "hangfire", })); ``` with this in my onmodelcreating ```csharp modelBuilder.OnHangfireModelCreating(); ``` i am not seeing...

bug