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
I am not sure if this is intentional or not but when we execute this code, this generates"FT.SEARCH" "customer:idx" "(@LastName:{*No*})" "LIMIT" "0" "100" caused by this
I think we should add valueType == typeof(IEnumerable<string>) check here
Wouldn't it be easier just to inverse the logic and replace these two line with this:
if(attribute is IndexedAttribute){if(valueType==typeof(string)&&type==typeof(string)){return$"({memberName}:{{*{EscapeTagField(literal)}*}})";}return$"({memberName}:{{{EscapeTagField(literal).Replace("\\|","|")}}})";}
@slorello89, can't seem to clone the repo:
Git failed with a fatal error.
I am not sure if this is intentional or not but when we execute this code, this generates
"FT.SEARCH" "customer:idx" "(@LastName:{*No*})" "LIMIT" "0" "100"
caused by thisI think we should add
valueType == typeof(IEnumerable<string>)
check hereMaking to
ToList()
works fine as expectedThe text was updated successfully, but these errors were encountered: