Migrate from .Net core 2.1 to .Net core 8.0
I am trying to migrate from .Net core 2.1 to .Net core 8.0.Now getting this error while running the application
What is the simplest way to run a single background task from a controller in .NET Core?
I have an ASP.NET Core web app, with WebAPI controllers. All I am trying to do is, in some of the controllers, be able to kick off a process that would run in the background, but the controller should go ahead and return before that process is done. I don’t want the consumers of the service to have to wait for this job to finish.
Run IConfiguration .Build() more than once
Can someone clarify once and for all whether running IConfiguration’s .Build() more than once is ok or not? I see the following type of answer in many SO answers but I heard somewhere that you weren’t supposed to do this.
How to compute byte size of list in C#
I want to send a large list of objects to another web service for intake. The web service has a byte limit of 6Mb. I want to send my list of 7,000+ objects in 5Mb “batches.”
Loop until a unique name is found
Im trying to do something i thought could be relatively simple but im missing something here.