Support "Named Value Dictionaries" #214
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The long overdue capability to support free-form data objects inside rethinkdb-net without relying on the rethinkdb-net-newtonsoft add-on library. This will also add many dictionary operations to the key capabilities.
Dictionary<string,object>
round-trip to RethinkDB..ContainsKey(...)
No ReQL operation for this (and, why would you want to anyway?).ContainsValue(...)
No ReQL operation to find the number of keys in an object.Count
propertyKeys
propertyValues
propertydictionary[key]
, for getting.Item accessors; eg.Doesn't return a Dictionary type, so can't make it work in a LINQ expression. Created an alternative instead (next point).dictionary[key]
, for setting.dict.SetValue(key, value).SetValue(key2, value2)
Returns void, can't use; however, SetValue extension method above does same functional capability..Add(...)
methodNo exact match for this in ReQL, but, did implement.Remove(...)
method.Without()
to exclude a key from a dictionary..Filter(o => (int)o.FreeformProperties["awesome level"] > 10)