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
If you used a previous version of this library, you may remember a more complicated, more limited constructor for ```PocoTableStore```. We've simplified things and added some flexibility by introducing ```IKeysConverter```, where implementations encapsulate the rules for converting to/from table storage keys.
@@ -126,7 +126,7 @@ var employee = new Employee
126
126
};
127
127
tableStore.Insert(employee);
128
128
```
129
-
In table storage, the partition key for the above example would be "1.22" and it's row key would be "1".
129
+
In table storage, the partition key for the above example would be "1.22" and its row key would be "1".
130
130
131
131
To retrieve the record, we can use ```PartitionKey``` to build the multi-part key.
132
132
```csharp
@@ -176,7 +176,7 @@ Note that our table store was ```PocoTableStore<Employee, int, int>```, but that
176
176
```var record = tableStore.GetRecord(142, "user");```
177
177
which is both clear and provides type safety.
178
178
179
-
### Further Filtering (Beyond Parition & Row Keys)
179
+
### Further Filtering (Beyond Partition & Row Keys)
180
180
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