Skip to content

Commit 3d124cb

Browse files
committed
Updating QuickStart doc to use db level throughput and latest screenshots
1 parent c7bd1bc commit 3d124cb

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

articles/cosmos-db/create-sql-api-dotnet.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: cosmos-db
77
ms.subservice: cosmosdb-sql
88
ms.devlang: dotnet
99
ms.topic: quickstart
10-
ms.date: 05/20/2019
10+
ms.date: 06/06/2019
1111
---
1212
# Quickstart: Build a .NET web app using SQL API account in Azure Cosmos DB
1313

@@ -46,33 +46,32 @@ An Azure subscription or free Azure Cosmos DB trial account
4646

4747
You can use the Data Explorer in the Azure portal to create a database and collection.
4848

49-
1. Select **Data Explorer** from the left navigation on your Azure Cosmos DB account page, and then select **New Collection**.
49+
1. Select **Data Explorer** from the left navigation on your Azure Cosmos DB account page, and then select **New Container**.
5050

51-
You may need to scroll right to see the **Add Collection** area.
51+
You may need to scroll right to see the **Add Contaier** window.
5252

5353
![The Azure portal Data Explorer, Add Collection pane](./media/create-sql-api-dotnet/azure-cosmosdb-data-explorer-dotnet.png)
5454

55-
1. In the **Add collection** page, enter the settings for the new collection.
55+
1. In the **Add container** pane, enter the settings for the new collection.
5656

5757
|Setting|Suggested value|Description
5858
|---|---|---|
59-
|**Database ID**|ToDoList|Enter *ToDoList* as the name for the new database. Database names must contain from 1 through 255 characters, and they cannot contain `/, \\, #, ?`, or a trailing space.|
60-
|**Collection ID**|Items|Enter *Items* as the name for your new collection. Collection IDs have the same character requirements as database names.|
61-
|**Partition key**| /category| The sample described in this article uses */category* as the partition key.|
59+
|**Database ID**|ToDoList|Enter *ToDoList* as the name for the new database. Database names must contain from 1 through 255 characters, and they cannot contain `/, \\, #, ?`, or a trailing space. Check the **Provision database throughput** option, it allows you to share the throughput provisioned to the database across all the containers within the database. This option also helps with cost savings. |
6260
|**Throughput**|400|Leave the throughput at 400 request units per second (RU/s). If you want to reduce latency, you can scale up the throughput later.|
61+
|**Container ID**|Items|Enter *Items* as the name for your new collection. Collection IDs have the same character requirements as database names.|
62+
|**Partition key**| /category| The sample described in this article uses */category* as the partition key.|
63+
6364

6465
Don't add **Unique keys** for this example. Unique keys let you add a layer of data integrity to the database by ensuring the uniqueness of one or more values per partition key. For more information, see [Unique keys in Azure Cosmos DB](unique-keys.md).
6566

66-
1. Select **OK**.
67-
Data Explorer displays the new database and collection.
67+
1. Select **OK**. The Data Explorer displays the new database and the container that you created.
6868

69-
![The Azure portal Data Explorer, showing the new database and collection](./media/create-sql-api-dotnet/azure-cosmos-db-new-collection.png)
7069

7170
## Add data to your database
7271

7372
Add data to your new database using Data Explorer.
7473

75-
1. In **Data Explorer**, the new database appears in the **Collections** pane. Expand the **ToDoList** database, expand the **Items** collection, select **Documents**, and then select **New Document**.
74+
1. In **Data Explorer**, expand the **ToDoList** database, and expand the **Items** container. Next, select **Items**, and then select **New Item**.
7675

7776
![Create new documents in Data Explorer in the Azure portal](./media/create-sql-api-dotnet/azure-cosmosdb-new-document.png)
7877

Binary file not shown.
79.1 KB
Loading
-19.8 KB
Loading
-8.06 KB
Loading

0 commit comments

Comments
 (0)