5

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.

peterh
  • 11,875
  • 18
  • 85
  • 108
Dipesh
  • 371
  • 1
  • 4
  • 20

1 Answers1

18

Create a class to represent your document stored in elasticsearch, and use it as generic argument in the Search method.

public class Document
{
    public string TextID { get; set; }
}

var searchResponse = client.Search<Document>(sd => sd
    .Index("index")
    .Type("type")
    .Size(10000)
    .Query(q => q
        .Match(m => m.Field("TextID").Query("WT")
        )));
Rob
  • 9,664
  • 3
  • 41
  • 43