Skip to content

Commit 6b92005

Browse files
committed
fix #300 missing multiget overloads on IElasticClient
1 parent 2273696 commit 6b92005

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Nest/IElasticClient.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,9 @@ public interface IElasticClient
153153

154154
IEnumerable<T> MultiGet<T>(IEnumerable<int> ids) where T : class;
155155
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+
156159
IEnumerable<T> MultiGet<T>(string index, string type, IEnumerable<int> ids) where T : class;
157160
IEnumerable<T> MultiGet<T>(string index, string type, IEnumerable<string> ids) where T : class;
158161

0 commit comments

Comments
 (0)