I have a requirement of reading the data from a table to reprocess the rows for a specified interval of time. which one should i use either classic windows service or .net core hosted service. please guide me on best approach.
I have a requirement of reading the data from a table to reprocess the rows for a specified interval of time. which one should i use either classic windows service or .net core hosted service. please guide me on best approach.
Check windows documentation: https://docs.microsoft.com/en-us/dotnet/standard/choosing-core-framework-server
Main reason to choose for .NET core is the scalability and the performance. .NET core 3.0 has a default worker template now, so I would try that in your case.