Monthly Archives: September 2016


Azure Functions & Transient Exceptions

Call other functions inside Azure Functions

This post covers how to deal with transient issues within Azure Functions. The process is simple, thanks to available helper libraries. All my code samples are in C#.

Read More →

SQL Server & JSON data

SQL Server, SQL Azure & JSON

At the moment, I’m working on a simple web reporting project. Given that this is a small-scale project, I’ve decided to try something new. Creating a tiny DAL responsible for retrieving and deserializing SQL Server generated JSON.

Read More →

Call other functions inside Azure Functions

Call other functions inside Azure Functions

As some of you may know, I’m currently playing around with Azure Functions. One of the limitations I have encountered with Azure functions is the lack of first-class support for calling other functions. Fortunately, several workarounds are available to you. I will cover each of them within this post.

Read More →