Which code segment ...
 
Notifications
Clear all

Which code segment should you use?

1 Posts
1 Users
0 Likes
160 Views
(@soquirandolph)
Noble Member
Joined: 2 years ago
Posts: 729
Topic starter  

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?

  • A . TableQuery.GenerateFilterCondition("PartitionKey", Equals, "Smith")
  • B . TableQuery.GenerateFilterCondition("LastName", Equals, "Smith")
  • C . TableQuery.GenerateFilterCondition("PartitionKey", QueryComparisons.Equal, "Smith")
  • D . TableQuery.GenerateFilterCondition("LastName", QueryComparisons.Equal, "Smith")

Show Answer Hide Answer

Suggested Answer: C

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

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

TableQuery<CustomerEntity> query = new

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

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

   
Quote

Latest Microsoft AZ-204 Dumps Valid Version

Latest And Valid Q&A | Instant Download | Once Fail, Full Refund
Share: