将所有查询与弹性搜索索引匹配

时间:2019-02-19 13:03:35

标签: c# elasticsearch

看看this,我想知道是否还可以仅通过字符串来搜索索引,例如:

distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip 
kotlin_version = '1.3.21' 
classpath 'com.google.gms:google-services:4.2.0' 
classpath 'com.android.tools.build:gradle:3.3.1'
Debug Version
minifyEnabled false
shrinkResources false

并接收未绑定到显式实体的数据。一些伪代码:

Hello World

1 个答案:

答案 0 :(得分:1)

您可以尝试一下:

var searchResponse = client.Search<Document>(sd => sd
    .Index("index_name")
    .Type("type")
    .Size(10000)
    .Query(q => q
        .Match(m => m.Field("TextID").Query("Hello World")
        )));