Getting an Azure function to do something like write to a database is kind of handy and it's really straight forward. In this post I'll be focusing on the SQL so I've assumed your up to speed on Azure functions.…
Serverless
A collection of 15 posts
Azure Functions Routing
With azure functions we can customise the end point that our Azure function will respond to. By default the HTTP trigger will use the name of the function as the URL. So if we want to customise that we have…
Azure Functions HTTP Triggers
Azure Functions HTTP triggers give us the ability to extend our applications in many ways. We can use them as webhooks and just make a call or we we can get responses. With Azure Functions added flexibility we can extend…
Azure Functions - Service Bus Queue Trigger
Azure functions allow have a service bus queue trigger, which will execute the code in the function each time a message is added to the service bus. Create Service Bus trigger In Azure functions create a new function, From the…
Azure Functions Nuget Packages and the dot Net Framework
Using Nuget and the .NET Framework in our Azure Functions is easy and straight forward. We can give our Azure functions alot of power and functionality. Using the .NET Framework For framework assemblies, add references by using the #r "AssemblyName"…
Azure Functions Triggers
Azure Functions come with a number of triggers, from HTTP, Timers, service bus, blob and many more. In this post we go over the different types of triggers available out of the box for Azure Functions. Last week I covered…
Azure Functions Getting Started
Function as a Service or FAAS we do love our abbreviations. FAAS is a set of functions that are short lived and single responsibility and have the ability to scale well. The big part of Functions as a service is…