nerdexam
Microsoft

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

Submitted by joshua94· Mar 30, 2026Develop for Azure storage

Question

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 with the last name Smith. Which code segment should you use?

Options

  • ATableQuery.GenerateFilterCondition("PartitionKey", Equals, "Smith")
  • BTableQuery.GenerateFilterCondition("LastName", Equals, "Smith")
  • CTableQuery.GenerateFilterCondition("PartitionKey",
  • DTableQuery.GenerateFilterCondition("LastName",

How the community answered

(54 responses)
  • A
    2% (1)
  • B
    11% (6)
  • C
    81% (44)
  • D
    6% (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

#Azure Table storage#PartitionKey#TableQuery#filter condition

Community Discussion

No community discussion yet for this question.

Full AZ-204 Practice