I have a very simple C# console exe. My code deletes a blob from a particular blob storage. It takes a couple of command-line arguments - container name & blob name and deletes the blob whenever triggered. Now, I want to schedule this exe as a webjob.
I have a couple of questions -
- How can I manually trigger this webjob since it takes command line arguments?
- Is there any way that I can trigger this webjob via a SQL server stored procedure?