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
This is a bit of an odd error (it looks like it's encountering some of the enum parsing logic which is unexpected). However this is actually an erroneous query. For several reasons:
The Id field is not indexed (you need to mark it as indexed in order to be able to do the LINQ style queries on it)
A nullable GUID is not a valid field to do a search on even if it were indexed. RediSearch has no concept (at the moment) of a nulled out field, hence it will not be able to interpret it.
You are using the GUID as your ID field, so you can just do an Id Search.
Hello,
In version 0.4.2 there was a fix to parsing nullable enums (#315). However, I am running into a similar issue with nullable guids.
Here is a code sample to demonstrate what is going on, on my end.
Which when called will error out with the follow exception,
As you can see in the error log, I am currently using version 0.6.0.
The text was updated successfully, but these errors were encountered: