In the preceeding parts of this series, we have delved into how to Create and Retrieve blobs using Azure Web Functions. In this part, we will look into how delete the blobs from Azure Blob Storage. Wait a minute !! Did that we mean we skip Update ? Not really, we will have a word about it before we start with Deletion. … Continue reading CRUD Operations with Azure Blob Storage in an Azure Function – Update & Deletion
Month: February 2021
Fody and “OnPropertyChanged” – The Unusual behavior
As a WPF Developer, Fody has been an extremely vital component in my aresenal. It takes a lot of burden off me by injecting some of the boiler plate codes. Despite that, there is one unusually behavior of Fody, which I have difficulty in digesting. For demonstration, let us create an example View for ourselves. … Continue reading Fody and “OnPropertyChanged” – The Unusual behavior
CRUD Operations with Azure Blob Storage in an Azure Function – Read
In the previous post, we examined how we could add an item to the Azure blob. In this part, we will use an Azure function to download the file store in Azure Blob Storage. Block Blob Let us begin with Block Blobs. [FunctionName("DownloadBlockBlob")] public static async Task<IActionResult> DownloadBlockBlob( [HttpTrigger(AuthorizationLevel.Anonymous,"get",Route =null)] HttpRequest req, [Blob("todos")] CloudBlobContainer blobContainer, ILogger … Continue reading CRUD Operations with Azure Blob Storage in an Azure Function – Read