문제

I'm trying to upgrade from Nest .10 to .12, but don't see what call I need to substitute for client.CreateIndexRaw("myIndexName", myJsonSettings).

도움이 되었습니까?

해결책

You can now use

client.Raw.IndicesCreatePost("myIndexName", myJsonSettings, nv=>nv);

myJsonSettings can be a string or anonymous c# object. The last argument is optional but allows you to pass any querystring value you might need.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top