If you need a background task within .Net Core to be run at set times we can use the Hosted Service provided from the service within .Net Core.
Continue reading Hosted Background timer taskMonthly Archives: May 2021
Hosting a service inside ASP.NET Core
A little hidden gem within .Net Core is the ability to run a Hosted Service inside the application. This allows for your service to run in a different thread to the main application, but keeps everything together though the need to host a separate service.
Continue reading Hosting a service inside ASP.NET Core