How to Handle Background Tasks in .NET Core Using Hosted Services?
Asked 4 days ago
Updated 4 days ago
Viewed 46 times
I must run periodic background tasks in my .NET Core application (e.g., every hour data cleanup). What is the best way to use IHostedService
or BackgroundService
for this purpose? Are there any caveats to watch out for?