CRUD Operations with Azure Blob Storage in an Azure Function – Create, Part 1

With Azure Blob storage, Microsoft provides an easy to use cloud based storage solution for storing massive amount of data, particularly unstructured data. These are ideal for storing media files which could be served directly to browser, maintaining log files among others. There are three components of Blob storage one needs to be aware of. … Continue reading CRUD Operations with Azure Blob Storage in an Azure Function – Create, Part 1

View Model First Approach using Caliburn Micro

While it is possible to use both View Model First and View First approach while using Caliburn Micro, I personally feel one should stick to one single appraoch thoughout your application. Mixing the two approaches would impact the readability of code adversely. View Model First Approach In this post we will look at the ViewModel … Continue reading View Model First Approach using Caliburn Micro

CRUD Operations with Azure Table Storage in an Azure Function – D

In the previous part of this series we briefly described how to Create, Retreive and Update records in an Azure Table Storage using Azure Web Functions. In this part, we will look into final part of quadrant - the Delete operations. As you would have guessed after going through previous posts in this series, we would be … Continue reading CRUD Operations with Azure Table Storage in an Azure Function – D

Computed Vs Methods Vs Watch

Computed Properties allows you to define auto calculated properties based on other properties. For example, you could have properties firstName and lastName, from which you could create a new property, fullName, which gets updated each time either firstName or lastName changes. For example, data() { return { firstName: "", lastName: "", }; }, computed: { FullName: function() { return this.firstName.concat(this.lastName); }, } The FullName property would be … Continue reading Computed Vs Methods Vs Watch

Azure Storage with Azure Functions

In this series of Articles, we will explore various Azure Storage options using Azure Functions. We will stick to the basic usage, leaving out the more advanced topics involved with the storage to later blog posts. CRUD using Azure Table Storage C - CreateR - RetrieveU - UpdateD - Delete CRUD using Azure Blob Storage … Continue reading Azure Storage with Azure Functions

CRUD Operations with Azure Table Storage in an Azure Function – U

In the earlier posts, we enlightened ourselves with creation and retrieval of records from Azure Table Storage using Azure Web Functions. In this segment, we will attempt to update a record. Let us once again look at our table before proceeding further. In the first approach, we will attempt to update the record based on … Continue reading CRUD Operations with Azure Table Storage in an Azure Function – U

CRUD Operations with Azure Table Storage in an Azure Function – R

In an earlier post, we discussed how to insert a new item in the Azure Storage Table. In this article, we will delve into how to retrieve data from Azure Storage Table. Retrieve a Single Entity In the previous article, we had partitioned the entities based on their first letter of their Title. Here is how … Continue reading CRUD Operations with Azure Table Storage in an Azure Function – R