Closed mchudinov closed 3 years ago
Did you get around this problem?
Anybody?
Anybody?
I have the same problem - the current implementation of Enqueue in this Repo is
However, in the current Hangfire definition of the interface IPersistentJobQueue, this definition is only valid if Hangfire is compiled with the FEATURE_TRANSACTIONSCOPE flag
#if FEATURE_TRANSACTIONSCOPE
void Enqueue(System.Data.IDbConnection connection, string queue, string jobId);
#else
void Enqueue(
System.Data.Common.DbConnection connection,
System.Data.Common.DbTransaction transaction,
string queue,
string jobId);
#endif
This flag is only enabled on net45, but not on net core:
`
I have the same problem here. Someone managed to solve? It seems to me the maintainers abandoned the project.
Method 'Enqueue' in type 'Hangfire.Azure.ServiceBusQueue.ServiceBusQueueJobQueue' from assembly 'Hangfire.Azure.ServiceBusQueue, Version=4.1.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
Got this error in .NET Core 2.2 project. Nuget package version Hangfire.Azure.ServiceBusQueue 4.1.0 What is the problem?
Here is the relevant code from ConfigureServices(IServiceCollection services) method