我尝试使用match_all查询查询弹性搜索索引。
Uri uri = new Uri("http://10.10.10.67:9200");
ConnectionSettings connection = new ConnectionSettings(uri);
connection.SetDefaultIndex("leases");
int port = connection.Port;
ElasticClient client = new ElasticClient(connection);
var feeQueryObject = client.Search<FeeQueryResult>(s => s
.Type("leases").MatchAll());
使用sense,我得到了结果,但没有得到NEST。
我不确定是否必须在ElasticSearch文档中准确设置模式的映射类? - 我班上只有一些属性,而不是所有属性。
关于为什么没有结果返回的任何想法?
答案 0 :(得分:1)
这是我的错。
类型不正确。应该是'费用'而不是'租赁'。