Adventures with Azure Functions: Dependency Injection

In this article we will look at how to do Dependency Injection with Azure Functions as described in the article athttps://docs.microsoft.com/en-us/azure/azure-functions/functions-dotnet-dependency-injection. The code for this article can be found at https://github.com/mattruma/SampleDependencyInjectionFunctionApp. To make the most of this article, it will be helpful to be familiar with: Azure Functions Dependency Injection and Dependency Injection in ASP.NET…

Adventures with Cosmos DB: Change Feed – Part 2

In Part 1 we looked at how to setup the Azure environment with a Cosmos DB and several Azure Functions, most of which, would be listening to the Cosmos DB change feed. In Part 2 we will take a deeper dive into each Azure Function and the nuances of working with the Cosmos DB change…

Adventures with Cosmos DB: Change Feed – Part 1

In a recent project I had dig deeper into how the Cosmos DB change feed worked, specifically in conjunction with the Azure Function Cosmos DB Trigger. I had some assumptions on how the Cosmos DB change feed worked, but needed to validate them. This will like be a series of articles. Before we go any…