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 wish to query an empty srting.
When I'm using only "match" the nest omits it.
When I used it with "Verbatim" it worked; until I upgraded the nest (both versions are 1.0.0.0) 2 week ago.
Now it renders "{ match: null }".
What should I do?
The text was updated successfully, but these errors were encountered:
public void ValidateNoOwner(QueryDescriptor descriptor) where T : class
{
descriptor.Verbatim().Match(m => m.OnField("HouseOwner").Query(string.Empty));
}
And it generates:
{
"match": null
}
(The original code is a bit complex, but it worked perfectly before the update)
I wish to query an empty srting.
When I'm using only "match" the nest omits it.
When I used it with "Verbatim" it worked; until I upgraded the nest (both versions are 1.0.0.0) 2 week ago.
Now it renders "{ match: null }".
What should I do?
The text was updated successfully, but these errors were encountered: