将Elasticsearch Query转换为.net NEST

时间:2017-10-26 16:06:47

标签: elasticsearch nest

如何将此弹性搜索匹配查询写入C#.net NEST。

 GET /disney2/character/_search
     {
     "query": {
     "match": {
     "name.phonetic": {
     "query": "Jahnnie Smeeth",
    "operator": "and"
     }
     }
     }
     } 

1 个答案:

答案 0 :(得分:0)

使用对象初始化器语法:

        ConnectionSettings _clientSettings = new ConnectionSettings(new Uri("http://localhost:9200/disney2"));
        var client = new ElasticClient(_clientSettings);
        var query = new SearchRequest<disney>(); // You're going to want to replace <object> with a model corresponding to your type, or specify the type via string
        var matcher = new MatchQuery();
        matcher.Field = "name.phonetic";
        matcher.Query = "Jahnnie Smith";
        matcher.Operator = Operator.And;
        query.Query = matcher;

        //var res = elasticClient.Search<disney>(query);
        var res = client.Search<disney>(query);