You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Small change in the documentation:
var response = await client.IndexAsync(tweet, "my-tweet-index"); // <2>
To
var response = await client.IndexAsync(tweet, (IndexName)"my-tweet-index"); // <2>
in order to avoid an ambiguous call:
error CS0121: The call is ambiguous between the following methods or properties: 'ElasticsearchClient.IndexAsync(TDocument, IndexName, CancellationToken)' and 'ElasticsearchClient.IndexAsync(TDocument, Id?, CancellationToken)'
0 commit comments