You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+34Lines changed: 34 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -188,6 +188,40 @@ Note that our table store was ```PocoTableStore<Employee, int, int>```, but that
188
188
```var record = tableStore.GetRecord(142, "user");```
189
189
which is both clear and provides type safety.
190
190
191
+
#### Sequential Keys
192
+
`SequentialKeyMapper` was introduced in v2.6 and is a bit different from other key mappers because the output isn't meant for point lookups. This key mapper assigns keys in sequential order (forward or backward). Because Azure Table Storage orders rows by row key, a sequential key allows you to use Azure Table Storage as a log.
193
+
194
+
Coupled with TODO , you can do things like saving a historical record when mutating your main table entity.
// order will be 3, 2, 1 because we are sorting in sequential order
223
+
```
224
+
191
225
### Further Filtering (Beyond Partition & Row Keys)
192
226
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.
0 commit comments