How to Handle Background Tasks in .NET Core Using Hosted Services?
Asked
3 months ago
Updated
3 months ago
Viewed
142 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?