You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/cosmos-db/create-sql-api-dotnet.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,7 +101,7 @@ Add data to your new database using Data Explorer.
101
101
102
102
To see how easy it is to work with your Azure Cosmos DB data programmatically, clone the sample SQL API .NET web app from GitHub, update the connection string, and run the app to update your data.
103
103
104
-
You could also create the database and collection by using the .NET sample code. To learn more, see [Review the .NET code](#review-the-net-code).
104
+
You could also create the database and the container by using the .NET sample code. To learn more, see [Review the .NET code](#review-the-net-code).
105
105
106
106
### Clone the sample app
107
107
@@ -141,7 +141,7 @@ First, clone a C# [SQL API app](https://github.com/Azure-Samples/documentdb-dotn
1. Make sure the database and collection values in the *web.config* match the names you created earlier.
144
+
1. Make sure the database and collection (also called container) values in the *web.config* match the names you created earlier.
145
145
146
146
```csharp
147
147
<addkey="database"value="ToDoList"/>
@@ -170,7 +170,7 @@ You can go back to Data Explorer in the Azure portal to see, query, modify, and
170
170
171
171
## Review the .NET code
172
172
173
-
Thisstepisoptional. Inthisquickstart, youcreatedadatabaseandacollectionintheAzureportalandaddedsampledatabyusingthe .NETsample. However, youcanalsocreatethedatabaseandthecollectionbyusingthe .NETsample. Reviewthefollowingsnippetsifyou're interested in how database resources are created in the code. The snippets are all taken from the *DocumentDBRepository.cs* file in the **todo** project.
173
+
Thisstepisoptional. Inthisquickstart, youcreatedadatabaseandacontainerintheAzureportalandaddedsampledatabyusingthe .NETsample. However, youcanalsocreatethedatabaseandthecontainerbyusingthe .NETsample. Reviewthefollowingsnippetsifyou're interested in how database resources are created in the code. The snippets are all taken from the *DocumentDBRepository.cs* file in the **todo** project.
174
174
175
175
*Thiscodeinitializesthe `DocumentClient`:
176
176
@@ -223,7 +223,7 @@ This step is optional. In this quickstart, you created a database and a collecti
0 commit comments