The application knows a Cosmos DB item's ID and partition-key value and performs many point reads. Which client pattern is both efficient and secure?
Show answer and explanation
Correct answer: B
A point read is efficient when both the item ID and partition-key value are supplied, because the service can route directly to the owning logical partition without a cross-partition query. Reusing one identity-authenticated client avoids repeated client and connection setup while eliminating an embedded account key. This combines direct routing with credential-free authentication.