部分更新弹性搜索NEST 2.x.

如何在使用NEST2时部分更新记录?

我正在寻找一个模拟请求:POST / erection / shop / 1 / _update {“doc”:{“new”:“0”}}

没有重新创建新记录。 很遗憾,我没有在www.elastic.co/guide/en/elasticsearch/client/net-api/current/index.html上找到有关更新的任何信息。

更新:

var updateResponse = es.Current.Update (DocumentPath.Id(2), descriptor => descriptor .Doc(new MyDocument { name = "new name" })); 

我运行此代码,但它完全更新了整个文档。

结果https://gyazo.com/2fdae851bb8bc445f6e8e58abb2f0e3b我做错了什么?

使用具有要更新的属性的匿名对象或其他类。 试试这段代码:

 var updateResponse = es.Current.Update(1, descriptor => descriptor .Doc(new { name = "new name" }));