ElasticSearch.Net Package issue on the Framework 4.8

Hi Team,
We have Elasticsearch 7.17.3 and tried to query the information.

for that we used NEST package 7.15.0 but we faced issue while querying

Issue is "Elasticsearch.Net.Utf8Json.JsonParsingException: expected:'String Begin Token', actual:'140625', at offset:9490"

response = elasticClient.Search(s => s
.Index(ElasticIndex)
// .Type("")
.Size(750)
.Query(q => q.MatchPhrase(c => c //If only Exact Match is required change q.Match to q.Matchphrase
.Field(p => p.content)
//.Slop(2)
//.Name("named_query")
.Query(inputtext)))

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.