Freigeben über


IDocumentClient.CreateDocumentCollectionAsync Methode

Definition

Überlädt

CreateDocumentCollectionAsync(String, DocumentCollection, RequestOptions)

Erstellt eine Sammlung als asychronen Vorgang im Azure Cosmos DB-Dienst.

CreateDocumentCollectionAsync(Uri, DocumentCollection, RequestOptions)

Erstellt eine Sammlung als asychronen Vorgang im Azure Cosmos DB-Dienst.

CreateDocumentCollectionAsync(String, DocumentCollection, RequestOptions)

Erstellt eine Sammlung als asychronen Vorgang im Azure Cosmos DB-Dienst.

public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.DocumentCollection>> CreateDocumentCollectionAsync (string databaseLink, Microsoft.Azure.Documents.DocumentCollection documentCollection, Microsoft.Azure.Documents.Client.RequestOptions options = default);
abstract member CreateDocumentCollectionAsync : string * Microsoft.Azure.Documents.DocumentCollection * Microsoft.Azure.Documents.Client.RequestOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.DocumentCollection>>
Public Function CreateDocumentCollectionAsync (databaseLink As String, documentCollection As DocumentCollection, Optional options As RequestOptions = Nothing) As Task(Of ResourceResponse(Of DocumentCollection))

Parameter

databaseLink
String

Der Link der Datenbank, in der die Sammlung erstellt werden soll. Beispiel: dbs/db_rid/.

documentCollection
DocumentCollection

Das DocumentCollection-Objekt.

options
RequestOptions

(Optional) Alle RequestOptions , die Sie beim Erstellen einer Sammlung angeben möchten. Z.B. RequestOptions.OfferThroughput = 400.

Gibt zurück

Die DocumentCollection erstellte , die in einem Task -Objekt enthalten ist, das die Dienstantwort für den asynchronen Vorgang darstellt.

Ausnahmen

Wenn oder databaseLinkdocumentCollection nicht festgelegt ist.

Stellt eine Konsolidierung von Fehlern dar, die während der asynchronen Verarbeitung aufgetreten sind. Suchen Sie in InnerExceptions nach den tatsächlichen Ausnahmen.

Diese Ausnahme kann viele verschiedene Fehlertypen kapseln. Um den spezifischen Fehler zu ermitteln, sehen Sie sich immer die StatusCode-Eigenschaft an. Einige häufige Codes, die Sie beim Erstellen einer Sammlung erhalten können, sind:

StatusCodeGrund für die Ausnahme
400BadRequest: Dies bedeutet, dass mit der bereitgestellten Anforderung ein Fehler aufgetreten ist. Es ist wahrscheinlich, dass für die neue Auflistung keine ID angegeben wurde.
403Verboten: Dies bedeutet, dass Sie versucht haben, Ihr Kontingent für Sammlungen zu überschreiten. Wenden Sie sich an den Support, um dieses Kontingent zu erhöhen.
409Konflikt: Dies bedeutet, dass ein DocumentCollection mit einer ID übereinstimmt, die der von Ihnen angegebenen ID entspricht, bereits vorhanden ist.

Beispiele

using (IDocumentClient client = new DocumentClient(new Uri("service endpoint"), "auth key"))
{
    //Create a new collection with an OfferThroughput set to 10000
    //Not passing in RequestOptions.OfferThroughput will result in a collection with the default OfferThroughput set.
    DocumentCollection coll = await client.CreateDocumentCollectionAsync(databaseLink,
        new DocumentCollection { Id = "My Collection" },
        new RequestOptions { OfferThroughput = 10000} );
}

Weitere Informationen

Gilt für:

CreateDocumentCollectionAsync(Uri, DocumentCollection, RequestOptions)

Erstellt eine Sammlung als asychronen Vorgang im Azure Cosmos DB-Dienst.

public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.DocumentCollection>> CreateDocumentCollectionAsync (Uri databaseUri, Microsoft.Azure.Documents.DocumentCollection documentCollection, Microsoft.Azure.Documents.Client.RequestOptions options = default);
abstract member CreateDocumentCollectionAsync : Uri * Microsoft.Azure.Documents.DocumentCollection * Microsoft.Azure.Documents.Client.RequestOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.ResourceResponse<Microsoft.Azure.Documents.DocumentCollection>>
Public Function CreateDocumentCollectionAsync (databaseUri As Uri, documentCollection As DocumentCollection, Optional options As RequestOptions = Nothing) As Task(Of ResourceResponse(Of DocumentCollection))

Parameter

databaseUri
Uri

Der URI der Datenbank, in der die Auflistung erstellt werden soll.

documentCollection
DocumentCollection

Das DocumentCollection-Objekt.

options
RequestOptions

(Optional) Die RequestOptions für die Anforderung.

Gibt zurück

Das Aufgabenobjekt, das die Dienstantwort für den asynchronen Vorgang darstellt.

Gilt für: