相关疑难解决方法(0)

如何在NEST2中更新Elasticsearch文档

我已将我的代码移植到NEST 2.0和Elasticsearch 2.0

我需要找到一种方法来更新已存储到ES2中的文档

我正在使用部分对象技术:

        elastic.Update<myDocumentType, myPartialDocumentType>(u => u
            .Index(myIndexName)
            .Id(id)
            .Doc(
                new myPartialDocumentType()
                {
                    // set the fields to update here
                })
            .Refresh());
Run Code Online (Sandbox Code Playgroud)

如何使用NEST2做同样的事情?

.net c# elasticsearch asp.net-web-api nest

3
推荐指数
1
解决办法
2835
查看次数

标签 统计

.net ×1

asp.net-web-api ×1

c# ×1

elasticsearch ×1

nest ×1