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.