Share via


IPartitionResolver.ResolveForRead(Object) Method

Definition

Given a partition key, this returns a list of collection self-links to read from.

public System.Collections.Generic.IEnumerable<string> ResolveForRead (object partitionKey);
abstract member ResolveForRead : obj -> seq<string>
Public Function ResolveForRead (partitionKey As Object) As IEnumerable(Of String)

Parameters

partitionKey
Object

The partition key used to determine the target collections for reads, i.e., query or read-feed.

Returns

The self-links for the collections to perform read requests for the specified partition key.

Remarks

The return value must be an IEnumerable of collection self-link strings in the format dbs/db_rid/colls/col_rid. Unlike ResolveForCreate, this is a 1:N as a single partition key might be created in different collections over time or because you are performing data migration of partition key between collections in the Azure Cosmos DB service.

Applies to