AZ-204 · Question #93
You use Azure Table storage to store customer information for an application. The data contains customer details and is partitioned by last name. You need to create a query that returns all customers
The correct answer is C. TableQuery.GenerateFilterCondition("PartitionKey",. Retrieve all entities in a partition. The following code example specifies a filter for entities where 'Smith' is the partition key. This example prints the fields of each entity in the query results to the Construct the query operation for all customer entities where PartitionKe
Question
Options
- ATableQuery.GenerateFilterCondition("PartitionKey", Equals, "Smith")
- BTableQuery.GenerateFilterCondition("LastName", Equals, "Smith")
- CTableQuery.GenerateFilterCondition("PartitionKey",
- DTableQuery.GenerateFilterCondition("LastName",
How the community answered
(54 responses)- A2% (1)
- B11% (6)
- C81% (44)
- D6% (3)
Explanation
Retrieve all entities in a partition. The following code example specifies a filter for entities where 'Smith' is the partition key. This example prints the fields of each entity in the query results to the Construct the query operation for all customer entities where PartitionKey="Smith". TableQuery<CustomerEntity> query = new TableQuery<CustomerEntity>().Where (TableQuery.GenerateFilterCondition("PartitionKey", QueryComparisons.Equal, "Smith")); https://docs.microsoft.com/en-us/azure/cosmos-db/table-storage-how-to-use-dotnet
Topics
Community Discussion
No community discussion yet for this question.