From the course: Learning Azure Durable Functions
Unlock this course with a free trial
Join today to access over 25,300 courses taught by industry experts.
Add a durable function to the app - Azure Tutorial
From the course: Learning Azure Durable Functions
Add a durable function to the app
- In our last video, we created an empty function app to house our durable function. This makes it easier for us to manage our functions in a single logical unit. In this video, we'll finally create our first durable function. In the solution explorer, right click the project. In the context menu that appears, hover over add, then select new Azure function. This brings up the add new item window. Confirm that the Azure function item is selected. Then give your durable function a name in the input. I'll name mine FirstDurablefunction. Click add. The next window shows you a list of Azure function templates to choose from. Scroll to find the durable functions orchestration template. Select it, then click add. In a few moments, a new durable function is added to the app. You'll see the durable function file has been added to your project in the solution explorer. If not already opened, double click on the file to view…