CosmosClient.GetDatabase(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a proxy reference to a database.
public virtual Azure.Cosmos.CosmosDatabase GetDatabase (string id);
abstract member GetDatabase : string -> Azure.Cosmos.CosmosDatabase
override this.GetDatabase : string -> Azure.Cosmos.CosmosDatabase
Public Overridable Function GetDatabase (id As String) As CosmosDatabase
Parameters
- id
- String
The cosmos database id
Returns
Cosmos database proxy
Examples
Database db = cosmosClient.GetDatabase("myDatabaseId"];
DatabaseResponse response = await db.ReadAsync();
Remarks
CosmosDatabase proxy reference doesn't guarantee existence.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET