We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2273696 commit 6b92005Copy full SHA for 6b92005
src/Nest/IElasticClient.cs
@@ -153,6 +153,9 @@ public interface IElasticClient
153
154
IEnumerable<T> MultiGet<T>(IEnumerable<int> ids) where T : class;
155
IEnumerable<T> MultiGet<T>(IEnumerable<string> ids) where T : class;
156
+ IEnumerable<T> MultiGet<T>(string index, IEnumerable<int> ids) where T : class;
157
+ IEnumerable<T> MultiGet<T>(string index, IEnumerable<string> ids) where T : class;
158
+
159
IEnumerable<T> MultiGet<T>(string index, string type, IEnumerable<int> ids) where T : class;
160
IEnumerable<T> MultiGet<T>(string index, string type, IEnumerable<string> ids) where T : class;
161
0 commit comments