IPartitionResolver.ResolveForRead(Object) 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.
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
Azure SDK for .NET