I new to Elasticsearch I have cURL
GET /index/type/_search
{
"query": {
"match": {
"TextID": "WT"
}
}
}
I want to convert it to lambda
expression in C#
. I managed to build some code but it is throwing runtime exception.
var searchQID = client.Search<string>(sd => sd
.Index("index")
.Type("type")
.Size(10000)
.Query(q => q
.Match(m => m.OnField("TextID").Query("WT")
)));
Please help.