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

it seems that there are foreign keys between HangFireState table and HangFireJob table One of them is set to cascading delete and the other is not From SQL its relatively...

Currently the model classes in the project are marked as internal which is normally fine since interaction with the underlying storage should be done with the Hangfire APIs themselves. However...

enhancement

Can you add more documentation on how this library is supposed to work? At first I expected it to expose the DbContext so that I can do the following: ```...

Implement queue item fetching by one request

enhancement

Using [DbContext pooling](https://docs.microsoft.com/en-us/ef/core/performance/advanced-performance-topics?tabs=with-constant#dbcontext-pooling) possibly can improve performance.

enhancement

Removing the explicit transaction creation due to the fact that the underlying DbContext may have an Execution Policy that does not allow for Transactions to be explicitly created

Hi, My code is using the PostgreSQL EnableRetryOnFailure with the DbContext that is passed to the Hangfire.io library. Unfortunately, the ExpirationManager uses BeginTransaction before the SaveChanges is causing the following...

Hi, I detect an error when testing library. If jobs are expired, this fails because HangfireJobParameter and HangFireState has entries with JobId related. Error: `23503: update or delete on table...