Background process with Hangfire and .NET 6

For .NET environment sometimes you need some scheduler process for recurring jobs. Most popular schedule tools are Quartz and Hangfire.
Before, I had used Quartz in my some projects but after introduced with Hangfire, it completely changed my mind. Hangfire is open and free for commercial use. And one of my project I used Hangfire and you can see the difference between these two tools when you experience both of them. With Hangfire all database management is handled by itself. It creates all related tables as job histories, job definitions etc. automatically.
So it makes your jobs very easy. And it provides a dashboard for you to see the jobs details and manage these jobs as delete, update etc.
Also Hangfire makes the test easy with its mock library. You can mock Hangfire by using Hangfire mock and Hangfire MemoryStorage for mocking db processes .
I will share you my project created by using with .Net6 and Hangfire. Lets jump to code a little bit;
Lets start adding Hangfire to project;
First add Hangfire from Nuget and add your project as below;
To use Hangfire dashboard you should add it to project startup;
And to run Hangfire server add ;
Add Retry number when a schedule failed;
Thats all for startup. I will share only ScheduleService to show how to CRUD a hangfire job. More is on github link;
Thanks for reading. See you soon 😄