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?
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.
Thanks, nirinchev
I have solved my issue, by initializing sqlserverstorage as per you say.
many thanks for solved my issue.