//build/ 2015 started today and there were some really nice announcements regarding the Microsoft Azure platform. Let’s see a brief summary on each one: Continue reading

//build/ 2015 started today and there were some really nice announcements regarding the Microsoft Azure platform. Let’s see a brief summary on each one: Continue reading
Table Storage is a key-value store that uses a partition key to help with scale out distribution of data and a row key for unique access to a particular entry within a partition. Together, these keys are used to uniquely identify a record in the account.
First, we will need to add the following to our configuration file (app.config if it’s a console application, web.config if it’s a web application):
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configuration> | |
<appSettings> | |
<add key="StorageConnectionString" value="DefaultEndpointsProtocol=https;AccountName=<your account name>;AccountKey=<your account key>" /> | |
</appSettings> | |
</configuration> |
Then, we will access our account with the following code: Continue reading