Reputation: 4274
We're looking at setting up some sort of Job to go through our system on a schedule and based on criteria, create emails for users. The system is a .Net based MVC web site with an MS SQL database.
It looks like Scheduler would fit, but then I saw the Batch service. What would you recommend?
Upvotes: 0
Views: 78
Reputation: 29905
If you host the ASP.NET MVC application within an Azure Web App, then you could simple implement a Web Job to run on the necessary schedule. With the application hosted in Azure Web App, then this would be the simplest solution to implement.
Upvotes: 2