JobStorage.Current property value has not been initialized

JobStorage.Current property value has not been initialized. You must set it before using Hangfire Client or Server API.

What I have to for This type Of Error In Hangfire?

You should call
JobStorage.Current = new SqlServerStorage("ConnectionStringName", options)
before initializing your BackgroundJobServer.

1 Like

Thanks, nirinchev
I have solved my issue, by initializing sqlserverstorage as per you say.
many thanks for solved my issue.