Skip to content

Commit ad354cc

Browse files
committed
removing links
1 parent bd0ba50 commit ad354cc

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

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

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ Azure Cosmos DB is Microsoft’s globally distributed multi-model database servi
2828
* Query the data
2929
* Delete the database
3030

31-
[API reference documentation](/dotnet/api/azure.cosmos?view=azure-dotnet) | [Library source code](https://github.com/Azure/azure-cosmos-dotnet-v3) | [Package (NuGet)](https://www.nuget.org/packages/Azure.Cosmos)
32-
3331
## Prerequisites
3432

3533
* 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
133131

134132
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:
135133

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.
143141

144142
## <a id="code-examples"></a>Code examples
145143

0 commit comments

Comments
 (0)