I am trying to build a dynamic query using NEST which is as under
string product = "goldpgl";
string agencyid = "1123";
ISearchResponse <ProductModel> res = client().Search<ProductModel>(s => s
.Index("proddata")
.From(0)
.Size(100)
.Query(q =>
+q.Term(p => p.product, product) &&
+q.Term(p => p.agencyid, agencyid)));
If I pass, product value = "GoldPGL"
[ N.B.~ Real value in the index ], I am not able to find the result.
However, if I pass the value in lowercase like "goldpgl", it works.
Also, it does not work for values like "Gold - PGL" or "SOME OTHER LOAN".
My POCO is as under
public class ProductModel
{
public string product { get; set; }
public string agencyid { get; set; }
}
What is wrong and how to rectify this?
As you have not provided the mapping and search query, I am assuming its happening because you are using the term query not the match query.
Term queries are not analyzed means whatever you entered in your search query would be matched against the tokens in the index. And by default, all the text fields in Elasticsearch use the standard analyzer which converts tokens to lowercase. hence
GoldPGL
doesn't match whilegoldpgl
matches in your term query.While
match
query as explained the official document is analyzed query and the same analyzer is applied on the search term, which is applied at index time, henceGoldPGL
as well asgoldpgl
converted togoldpgl
and both the query matches the documents and same is withGold - PGL
which also matches and verifies by me.Analyze API comes very handy to troubleshoot these types of issue, where search query doesn't match the indexed tokens and one example of how
GOLDPGL
would be analyzed is shown below:POST /_analyze
I reproduced your issue and as I am not familiar with NEST, showing your example using the REST API.
Index Def
POST /
Index some documents
POST //_doc/1
Index 2nd doc
Now search query using term query(as shown in your example), doesn't return any result (when
GoldPGL
is used)When used
goldgpl
, it gives resultResult
Solution (use match query)
and this return results