How to integrate a WebJob within an Azure Data Factory Pipeline
I'am trying to integrate a WebJob inside an ADF pipeline. The webjob is a very simple console application: namespace WebJob4 { class ReturnTest { static double CalculateArea(int r) { double area = r * r * Math.PI; return area; } static void Main() { int radius = 5; double result = CalculateArea(radius); Console.WriteLine("The area is {0:0.00}", result); } } } How do we call this webjob through an ADF pipeline and store the response code (HTTP 200 in case of Success) in azure blob storage? Dec 2018 Update : If you are thinking of doing this using azure function, azure data factory NOW provides