From 15e39ad64fa4a4e69db5119c0923f9f8a5fa4db9 Mon Sep 17 00:00:00 2001 From: Richard Astbury Date: Fri, 22 Nov 2013 16:15:57 +0000 Subject: [PATCH] updated readme --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6362ed1..84924a4 100644 --- a/README.md +++ b/README.md @@ -48,5 +48,11 @@ var entity = client.QueryTable("helloworld", "PK", "RK"); Or you can pass in an OData query, and get an array of Hashtables back: ```cs -var entities = client.QueryTable("netmftest", "PartitionKey eq '2'"); +var entities = client.QueryTable("helloworld", "PartitionKey eq 'PK'"); ``` + +Delete an entity: + +```cs +client.DeleteTableEntity("helloworld", "PK", "RK"); +``` \ No newline at end of file