Posts

Showing posts from March 12, 2019

Azure Storage CRUD operations using .NET Core

Image
0 I've been working with Azure Storage resources recently, particularly I was just playing around with CRUD operations in Table. I was able to accomplish a task using .NET Framework, however, recently my requirements have changed and I had to migrate to .NET Core. I wrote the same type of code by it reaches try-catch statement in CreateTable() and stop for no reason, I am not getting any exceptions or messages, program just exits from there. I have been trying to figure out this issue, so far I came to the following solution that seems to be missing a tiny piece to make it work. Moreover, previously I was using CosmosDB API to perform this operations. Unfortunately, it is not available in .NET Core, therefore I came up with this solution. My thoughts: I am concerned about authentication part as well, sinc