From the course: Exploring Performance and Scale with Data Options in Azure

Unlock the full course today

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

Azure Table Storage

Azure Table Storage - Azure Tutorial

From the course: Exploring Performance and Scale with Data Options in Azure

Start my 1-month free trial

Azure Table Storage

- [Instructor] Currently, when we create an upload, we don't do anything with it. We just upload it into storage. I want to have a page that lists all the uploads that we've done. So what we're going to do is we're going to go into our application. We're going to use table storage to track the uploads that we've done. So in my startup controller, we're going to work with a Azure Table Client. An Azure Table Client is created the same way that we did before by going into the account and creating it, Az Account, and we're going to call the method Create, and this time we're going to call the CloudTableClient. And the CloudTableClient we're going to create is where we're going to get a reference to that cloud table, so create that. And then once we have that table client, I'm going to create the actual table reference, and this is going to come from the Azure Table Client. And from that, I'm going to say get the…

Contents