this error is happening because your Hangfire Dashboard is getting confused. You Likely have a [JobSource] attribute on a class, which automatically registers every method as a job. Where you also potentially have manual [Job("...")] attributes on one or more of your methods. This results in those methods having two names, which causes the dashboard to crash when it tries to display them.