您传递文档ID的方式有些变化。
今天看起来像:
var updateResponse = client.Update<document, documentPartial>(1, descriptor => descriptor .Doc(new documentPartial { Title = "new title" }));要么
var updateResponse = client.Update<document, documentPartial>(documentPath<document>.Id(1), descriptor => descriptor .Doc(new documentPartial { Title = "new title" }));希望能帮助到你。



