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.
2 parents 07472b4 + fec86e3 commit 471218dCopy full SHA for 471218d
src/Nest/ElasticClient-MultiSearch.cs
@@ -35,7 +35,7 @@ public MultiSearchResponse MultiSearch(MultiSearchDescriptor multiSearchDescript
35
multiSearchDescriptor._FixedIndex ??
36
new IndexNameResolver(this._connectionSettings).GetIndexForType(operation._ClrType);
37
38
- var types = operation._Types.HasAny() ? string.Join(",", operation._Types) : null;
+ var types = operation._Types.HasAny() ? string.Join(",", operation._Types.Select(x => x.Resolve(this.Settings)) ) : null;
39
40
var typeName = types
41
?? multiSearchDescriptor._FixedType
0 commit comments