你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DocumentClient.CreateDatabaseIfNotExistsAsync 方法

定义

如果 不存在) 创建 (;如果数据库资源) 已存在,则创建 (作为 Azure Cosmos DB 服务中的异步操作获取 (。 可以从响应中检查状态代码,以确定数据库是新创建的 (201) ,还是 (200 返回现有数据库)

public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.Database>> CreateDatabaseIfNotExistsAsync (Microsoft.Azure.Documents.Database database, Microsoft.Azure.Documents.Client.RequestOptions options = default);
abstract member CreateDatabaseIfNotExistsAsync : Microsoft.Azure.Documents.Database * Microsoft.Azure.Documents.Client.RequestOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.Database>>
override this.CreateDatabaseIfNotExistsAsync : Microsoft.Azure.Documents.Database * Microsoft.Azure.Documents.Client.RequestOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.Database>>
Public Function CreateDatabaseIfNotExistsAsync (database As Database, Optional options As RequestOptions = Nothing) As Task(Of ResourceResponse(Of Database))

参数

database
Database

要创建的 的 Database 规范。

options
RequestOptions

(可选的) RequestOptions 请求的 。

返回

Database 表示异步操作的服务响应的任务对象中创建的 。

实现

例外

如果未 database 设置 。

表示异步处理期间发生的故障的合并。 在 InnerExceptions 中查找实际异常 () 。

此异常可以封装许多不同类型的错误。 若要确定特定错误,请始终查看 StatusCode 属性。

示例

下面的示例使用 Id 属性“MyDatabase”创建新的 Database ,此代码片段旨在从异步方法中使用,因为它使用 await 关键字 (keyword)

using (IDocumentClient client = new DocumentClient(new Uri("service endpoint"), "auth key"))
{
    Database db = await client.CreateDatabaseIfNotExistsAsync(new Database { Id = "MyDatabase" });
}

如果要从同步方法中构造 Database ,则需要使用以下代码

using (IDocumentClient client = new DocumentClient(new Uri("service endpoint"), "auth key"))
{
    Database db = client.CreateDatabaseIfNotExistsAsync(new Database { Id = "MyDatabase" }).Result;
}

适用于

另请参阅