你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
CosmosClient.GetDatabase(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回对数据库的代理引用。
public virtual Microsoft.Azure.Cosmos.Database GetDatabase (string id);
abstract member GetDatabase : string -> Microsoft.Azure.Cosmos.Database
override this.GetDatabase : string -> Microsoft.Azure.Cosmos.Database
Public Overridable Function GetDatabase (id As String) As Database
参数
- id
- String
Cosmos 数据库 ID
返回
Cosmos 数据库代理
示例
Database db = cosmosClient.GetDatabase("myDatabaseId");
DatabaseResponse response = await db.ReadAsync();
注解
Database 代理引用不保证存在。 在对数据库进行操作之前,请确保通过 CreateDatabaseAsync(String, Nullable<Int32>, RequestOptions, CancellationToken) 或 CreateDatabaseIfNotExistsAsync(String, Nullable<Int32>, RequestOptions, CancellationToken)存在数据库。