Azure functions have moved forward a huge amount since V1 in this post we go over some of the new changes to creating functions in V2. This is the first part in a new updated series where I will update…
Serverless
A collection of 15 posts
Going Serverless
Over the last few years as technology has improved and the cloud providers built out more and more infrastructure, serverless began to grow. Serverless doesn't mean there is no server. What serverless means is that you don't have to worry…
Azure Timer Functions
A quick getting started guide for Azure Timer functions. Timer triggers give us alot more options to automate things. With Azure timer functions we don't have to take care of the timer Azure handles that. We can focus on the…
Azure Functions with Continuous Deployment
A quick guide to setting up continuous deployment for Azure functions. Continuous Deployment or Continuous Delivery allows us to deploy our application / code into the production or test based on each check in to our source control, this allows us…
Azure Functions Routes and Proxies
Azure Function Proxies allow you to create a single unifed API surface for your Azure functions. The Microsoft Azure stack allows you to use different technologies so you can use the right tool for the job. Azure functions can also…
Azure Functions with Table Storage
Using a HTTP Trigger Azure Function and storing the data into an Azure Table storage account. Azure Table storage is a service that stores structured NoSQL data in the cloud, providing a key/attribute store with a schemaless design. You…
Azure Functions Entity Framework - Part 2
In this post we will look at using Entity Frameworks Entity models and using our DbContext to create mappings and use these mappings in our Azure function. Azure functions use Code First approaches to Entity Framework. Source code for this…
Azure Functions with Entity Framework - Part 1
In this post we'll walk through loading Entity Framework into an Azure function, Saving data to our database. There can be alot of ceremony in setting up Entity Framework but it's straight forward to do. In this post we will…