Skip to content

Commit 2e0cf65

Browse files
authored
Update README.md
1 parent f442dbf commit 2e0cf65

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,3 +159,14 @@ record = tableStore.GetRecord(1, int.MinValue);
159159
Note that our table store was ```PocoTableStore<Employee, int, int>```, but that last generic could have been anything since it is thrown away. So if you prefer, you can make it ```PocoTableStore<Employee, int, string>``` and then query like so:
160160
```var record = tableStore.GetRecord(142, "user");```
161161
which is both clear and provides type safety.
162+
163+
### Further Filtering (Beyond Parition & Row Keys)
164+
New to v1.2, we now include the ability to filter on properties outside of partition and row keys. Please note that this filtering occurs outside of table storage, so please consider using at least the partition key for best results.
165+
166+
Example:
167+
168+
```charp
169+
var records = tableStore.GetByPartitionKey(1, e=>e.Name == "Jim CEO");
170+
```
171+
172+
In this example we get all records in parition "1" where the name is "Jim CEO".

0 commit comments

Comments
 (0)