Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

Microsoft Exam AZ-203 Topic 8 Question 4 Discussion

Actual exam question for Microsoft's AZ-203 exam
Question #: 4
Topic #: 8
[All AZ-203 Questions]

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?

Show Suggested Answer Hide Answer
Suggested Answer: C

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 console.

Construct the query operation for all customer entities where PartitionKey="Smith".

TableQuery query = new

TableQuery().Where(TableQuery.GenerateFilterCondition("PartitionKey", QueryComparisons.Equal, "Smith"));

References:

https://docs.microsoft.com/en-us/azure/cosmos-db/table-storage-how-to-use-dotnet


Contribute your Thoughts:

Currently there are no comments in this discussion, be the first to comment!


Save Cancel