Home > Software design >  ASP.NET Web App with logic always running
ASP.NET Web App with logic always running

Time:08-30

In my asp.net web app, I want to run a sql call everyday at a certain time. I understand that I cant do this in a controller because the life cycle of controllers are request based.

Can anybody point me in the right direction for how to setup a "Logic App" on my server side?

CodePudding user response:

it does not need to be a web application, just a console app as a job would be fine, inside the app you can use hangfire of quartz to handle your job to be run at the specific time you want.

  • Related