v0.2.0
v0.2.0 includes a bunch of bug fixes & Enhancements for Redis OM, including one minor breaking change
BREAKING CHANGE
- The Update & Delete commands in were previously async, with sync versions, this has been changed to keep with the traditional patterns so Update -> UpdateAsync and UpdateSync -> Update, same with Delete -> DeleteAsync and DeleteSync -> Delete. See #126
New Features
- Added the ability to count how many members are in a group see #102
- Added extensions for OrderBy predicates so you don't have to cast them anymore see #130
- Added the ability to Order by multiple fields see #115
- Added the ability to use the Load predicate in Aggregations see #122
- Added the ability to index and query by ULIDs, GUIDs, booleans, and Enums see #138
Bug Fixes
- Fixed issue with timezone conversions see #133
- Fixed issue with async enumeration methods where it would ignore the currently constructed expression, see #130
- Fixed issue when querying an array for a value with a special character see #136
- Fixed issue with parsing hashes when more than one property has the same prefix - see #124