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.

Adding an entity into Azure Table storage

Adding an entity into Azure Table storage - ASP.NET Core Tutorial

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

Start my 1-month free trial

Adding an entity into Azure Table storage

- [Instructor] Now that you know how to add a table to an Azure storage account let us check how to add entities to a table. Because the entities is where we store the data. For that, let's go to visual studio and see it in action. In here we are going to create a new file that we are going to use to work with data. So for that, let's go to Solution Explorer then in the data folder, we are going to add a new one So add a new folder Let us name this folder, Operations Then inside this folder, let us add a new class named, Operations. Let us change the Operations to be a public class. And inside here, we are going to create a method. So public async task. We are going to name this method, Trigger Operations. But as important necessarily namespace for the task, which is the System.Threading.Tasks. And now in here we are going to write all the code. Now on the last part, when you find the table name and the program dot CS…

Contents