From the course: ASP.NET Core: Working with Azure Tables

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Parsing and validating an Azure Table storage connection string

Parsing and validating an Azure Table storage connection string - ASP.NET Core Tutorial

From the course: ASP.NET Core: Working with Azure Tables

Start my 1-month free trial

Parsing and validating an Azure Table storage connection string

- [Instructor] Now that you have set up the Azure development environment, and also the local environment, there is one more step that needs to be completed and that is to make sure that you have a valid connection string between the local and Azure environments. Now, for that on this part, you'll learn how to parse and validate an Azure storage account connection string. So let's go to Visual Studio and see this in action. In here, I'm going to create a new folder, so in Solution Explorer, inside the Data folder, I will just right click, then Add a new folder. I'm going to name this folder Common. And then inside here, I'll add a class, so Add, Class. I'm going to name this class Common and then press enter. Let us make this class public. Now, inside this class, I'll create a method, which I'm going to use in the future to create an Azure storage table and inside this method, I'll also have the…

Contents