Pulling a single entity in Storage Table

Following the piece of code uses TableOperation to specify the customer 'Tariq Younas'. This method returns just one entity rather than a collection, and the returned value in TableResult.A result is a CustomerEntity object.

CloudStorageAccount storageAccount = CloudStorageAccount.Parse(
CloudConfigurationManager.GetSetting("StorageConnectionString"));
CloudTableClient tableClient = storageAccount.CreateCloudTableClient();x
CloudTable table = tableClient.GetTableReference("people");
TableOperation retrieveOperation = TableOperation.Retrieve<CustomerEntity>("Younas", "Tariq");
TableResult retrievedResult = table.Execute(retrieveOperation);
if (retrievedResult.Result != null)
{
Console.WriteLine(((CustomerEntity)retrievedResult.Result).PhoneNumber);
}
else
{
Console.WriteLine("Unable to pull the phone number.");
}