Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
richorama committed Nov 22, 2013
1 parent 997c9c2 commit 15e39ad
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Expand Up @@ -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");
```

0 comments on commit 15e39ad

Please sign in to comment.