コード例 #1
0
 public static IOrderedQueryable <TRecord> EmployeesQueryable <TRecord>(this CosmosClient client, string partitionKey) =>
 client.GetEmployeesContainer().GetItemLinqQueryable <TRecord>(requestOptions: new QueryRequestOptions
 {
     PartitionKey = new PartitionKey(partitionKey.ToLowerInvariant())
 });
コード例 #2
0
 public static IOrderedQueryable <TRecord> EmployeesQueryable <TRecord>(this CosmosClient client) =>
 client.GetEmployeesContainer().GetItemLinqQueryable <TRecord>();