public async Task GetExistingEntity()
        {
            var person1 = await Client.InsertAsync(new Person());

            var person2 = await Client.GetAsync(person1.PartitionKey, person1.RowKey);

            Assert.AreEqual(person1.PartitionKey, person2.PartitionKey);
            Assert.AreEqual(person1.RowKey, person2.RowKey);

            await Client.DeleteAsync(person1);
        }