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
* Azure subscription - [create one for free](https://azure.microsoft.com/free/) or you can [Try Azure Cosmos DB for free](https://azure.microsoft.com/try/cosmosdb/) without an Azure subscription, free of charge and commitments.
@@ -133,13 +131,13 @@ Before you start building the application, let's look into the hierarchy of reso
133
131
134
132
To learn in more about the hierarchy of different entities, see the [working with databases, containers, and items in Azure Cosmos DB](databases-containers-items.md) article. You will use the following .NET classes to interact with these resources:
135
133
136
-
*[CosmosClient](https://docs.microsoft.com/dotnet/api/azure.cosmos.cosmosclient?view=azure-dotnet) - This class provides a client-side logical representation for the Azure Cosmos DB service. The client object is used to configure and execute requests against the service.
137
-
*[CreateDatabaseIfNotExistsAsync](/dotnet/api/azure.cosmos.cosmosclient.createdatabaseifnotexistsasync?view=azure-dotnet) - This method creates (if doesn't exist) or gets (if already exists) a database resource as an asynchronous operation.
138
-
*[CreateContainerIfNotExistsAsync](/dotnet/api/azure.cosmos.database.createcontainerifnotexistsasync?view=azure-dotnet)- - This method creates (if it doesn't exist) or gets (if it already exists) a container as an asynchronous operation. You can check the status code from the response to determine whether the container was newly created (201) or an existing container was returned (200).
139
-
*[CreateItemAsync](/dotnet/api/azure.cosmos.container.createitemasync?view=azure-dotnet) - This method creates an item within the container.
140
-
*[UpsertItemAsync](/dotnet/api/azure.cosmos.container.upsertitemasync?view=azure-dotnet) - This method creates an item within the container if it doesn't already exist or replaces the item if it already exists.
141
-
*[GetItemQueryIterator](/dotnet/api/azure.cosmos.container.GetItemQueryIterator?view=azure-dotnet) - This method creates a query for items under a container in an Azure Cosmos database using a SQL statement with parameterized values.
142
-
*[DeleteAsync](/dotnet/api/azure.cosmos.database.deleteasync?view=azure-dotnet) - Deletes the specified database from your Azure Cosmos account. `DeleteAsync` method only deletes the database.
134
+
* CosmosClient - This class provides a client-side logical representation for the Azure Cosmos DB service. The client object is used to configure and execute requests against the service.
135
+
* CreateDatabaseIfNotExistsAsync - This method creates (if doesn't exist) or gets (if already exists) a database resource as an asynchronous operation.
136
+
* CreateContainerIfNotExistsAsync - This method creates (if it doesn't exist) or gets (if it already exists) a container as an asynchronous operation. You can check the status code from the response to determine whether the container was newly created (201) or an existing container was returned (200).
137
+
* CreateItemAsync - This method creates an item within the container.
138
+
* UpsertItemAsync - This method creates an item within the container if it doesn't already exist or replaces the item if it already exists.
139
+
* GetItemQueryIterator - This method creates a query for items under a container in an Azure Cosmos database using a SQL statement with parameterized values.
140
+
* DeleteAsync - Deletes the specified database from your Azure Cosmos account. `DeleteAsync` method only deletes the database.
0 commit comments