CosmosQueryableExtensions.WithPartitionKey<TEntity> 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定用於查詢之資料分割的分割區索引鍵。 使用根據分割區索引鍵提供許可權的資源權杖進行驗證時,需要此權杖,
public static System.Linq.IQueryable<TEntity> WithPartitionKey<TEntity> (this System.Linq.IQueryable<TEntity> source, string partitionKey) where TEntity : class;
static member WithPartitionKey : System.Linq.IQueryable<'Entity (requires 'Entity : null)> * string -> System.Linq.IQueryable<'Entity (requires 'Entity : null)> (requires 'Entity : null)
<Extension()>
Public Function WithPartitionKey(Of TEntity As Class) (source As IQueryable(Of TEntity), partitionKey As String) As IQueryable(Of TEntity)
類型參數
- TEntity
正在查詢的實體類型。
參數
- source
- IQueryable<TEntity>
來源查詢。
- partitionKey
- String
分割區索引鍵。
傳回
IQueryable<TEntity>
具有設定資料分割索引鍵的新查詢。
備註
如需詳細資訊和範例,請參閱 使用 EF Core 查詢資料,以及 使用 EF Core 存取 Azure Cosmos DB 。