Background services with IHostedService

I would like to present how to make background services in asp.net core with IHostedService.

What isĀ IHostedService

You can useĀ IHostedService to create background tasks in asp.net core projects. I usedĀ Quartz.NETĀ to similar purposes in the past. I do not want to compare them because it is not purpose of this article :-). So, if you want to create background task you can do that by implementing IHostedService. It’s very simple šŸ™‚

Continue reading “Background services with IHostedService”