ExRam.Gremlinq 12.20.0
Changes
- Optimize Values operator (#1952) @danielcweber
- More Span params (#1950) @danielcweber
Note: When compiling against this release, users might observe warnings like
CS8604: Possible null reference argument for parameter 'value' in 'VertexProperty.implicit operator VertexProperty(object value)'
on calls to operators that had params ReadOnlySpan<...>
overloads added in this release. This can be worked around by applying the !-operator (or null-forgiving-operator) to the expression inside the call, e.g. change calls to
__ => __.Values(x => x.Name)
to
__ => __.Values(x => x.Name!).