title | description | services | author | ms.service | ms.component | ms.custom | ms.devlang | ms.topic | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|
Quickstart: Table API with .NET - Azure Cosmos DB |
This quickstart shows how to use the Azure Cosmos DB Table API to create an application with the Azure portal and .NET |
cosmos-db |
SnehaGunda |
cosmos-db |
cosmosdb-table |
quickstart connect, mvc |
dotnet |
quickstart |
08/17/2018 |
sngun |
[!div class="op_single_selector"]
This quickstart shows how to use .NET and the Azure Cosmos DB Table API to build an app by cloning an example from GitHub. This quickstart also shows you how to create an Azure Cosmos DB account and how to use Data Explorer to create tables and entities in the web-based Azure portal.
Azure Cosmos DB is Microsoft’s globally distributed multi-model database service. You can quickly create and query document, key/value, and graph databases, all of which benefit from the global distribution and horizontal scale capabilities at the core of Azure Cosmos DB.
If you don’t already have Visual Studio 2017 installed, you can download and use the free Visual Studio 2017 Community Edition. Make sure that you enable Azure development during the Visual Studio setup.
[!INCLUDE quickstarts-free-trial-note]
Important
You must create a new Table API account to work with the generally available Table API SDKs. Table API accounts created during preview are not supported by the generally available SDKs.
[!INCLUDE cosmos-db-create-dbaccount-table]
[!INCLUDE cosmos-db-create-table]
[!INCLUDE cosmos-db-create-table-add-sample-data]
Now let's clone a Table app from GitHub, set the connection string, and run it. You'll see how easy it is to work with data programmatically.
-
Open a command prompt, create a new folder named git-samples, then close the command prompt.
md "C:\git-samples"
-
Open a git terminal window, such as git bash, and use the
cd
command to change to the new folder to install the sample app.cd "C:\git-samples"
-
Run the following command to clone the sample repository. This command creates a copy of the sample app on your computer.
git clone https://github.com/Azure-Samples/storage-table-dotnet-getting-started.git
-
In Visual Studio, from the File menu, choose Open, then choose Project/Solution.
-
Navigate to the folder where you cloned the sample application, and open the TableStorage.sln file.
Now go back to the Azure portal to get your connection string information and copy it into the app. This enables your app to communicate with your hosted database.
-
In the Azure portal, click Connection String.
Use the copy button on the right side of the window to copy the PRIMARY CONNECTION STRING.
-
In Visual Studio, open the App.config file.
-
Uncomment the StorageConnectionString on line 8 and comment out the StorageConnectionString on line 7, because this tutorial does not use the Azure SDK Storage Emulator. Lines 7 and 8 should now look like this:
<!--key="StorageConnectionString" value="UseDevelopmentStorage=true;" />--> <add key="StorageConnectionString" value="DefaultEndpointsProtocol=https;AccountName=[AccountName];AccountKey=[AccountKey]" />
-
Paste the PRIMARY CONNECTION STRING from the portal into the StorageConnectionString value on line 8. Paste the string inside the quotes.
[!IMPORTANT] If your Endpoint uses documents.azure.com, that means you have a preview account, and you must create a new Table API account to work with the generally available Table API SDK.
Line 8 should now appear similar to:
<add key="StorageConnectionString" value="DefaultEndpointsProtocol=https;AccountName=<account name>;AccountKey=<account-key>;TableEndpoint=https://<account name>.table.cosmosdb.azure.com;" />
-
Press CTRL+S to save the App.config file.
You've now updated your app with all the info it needs to communicate with Azure Cosmos DB.
-
In Visual Studio, right-click on the TableStorage project in Solution Explorer and then click Manage NuGet Packages.
-
In the NuGet Browse box, type Microsoft.Azure.CosmosDB.Table. This will find the Cosmos DB Table API client library. Note that this library is currently available for .NET Standard only, it's not yet available for .NET Core.
-
Click Install to install the Microsoft.Azure.CosmosDB.Table library. This installs the Azure Cosmos DB Table API package and all dependencies.
-
Open BasicSamples.cs. Right-click on line 52, select Breakpoint, then select Insert Breakpoint. Insert another breakpoint on line 55.
-
Press F5 to run the application.
The console window displays the name of the new table database (in this case, demo91ab4) in Azure Cosmos DB.
If you get an error about dependencies, see Troubleshooting.
When you hit the first breakpoint, go back to Data Explorer in the Azure portal. Click the Refresh button, expand the demo* table, and click Entities. The Entities tab on the right shows the new entity that was added for Walter Harp. Note that the phone number for the new entity is 425-555-0101.
-
Close the Entities tab in Data Explorer.
-
Press F5 to run the app to the next breakpoint.
When you hit the breakpoint, switch back to the Azure portal, click Entities again to open the Entities tab, and note that the phone number has been updated to 425-555-0105.
-
Press F5 to run the app.
The app adds entities for use in an advanced sample app that the Table API currently does not support. The app then deletes the table created by the sample app.
-
In the console window, press Enter to end the execution of the app.
[!INCLUDE cosmosdb-tutorial-review-slas]
[!INCLUDE cosmosdb-delete-resource-group]
In this quickstart, you've learned how to create an Azure Cosmos DB account, create a table using the Data Explorer, and run an app. Now you can query your data using the Table API.
[!div class="nextstepaction"] Import table data to the Table API