8 references to SelectMany
Microsoft.AspNetCore.Http.Extensions (1)
QueryBuilder.cs (1)
42
: this(parameters.
SelectMany
(kvp => kvp.Value, (kvp, v) => KeyValuePair.Create(kvp.Key, v ?? string.Empty)))
Microsoft.AspNetCore.WebUtilities (1)
QueryHelpers.cs (1)
65
return AddQueryString(uri, queryString.
SelectMany
(kvp => kvp.Value, (kvp, v) => KeyValuePair.Create<string, string?>(kvp.Key, v)));
Microsoft.ML.AutoML.SourceGenerator (4)
EstimatorTypeGenerator.cs (2)
36
.
SelectMany
(file => Utils.GetEstimatorsFromJson(file.GetText().ToString()).Estimators, (text, estimator) => (estimator.FunctionName, estimator.EstimatorTypes))
41
.
SelectMany
(file => Utils.GetEstimatorsFromJson(file.GetText().ToString()).Estimators, (text, estimator) => (estimator.FunctionName, estimator.EstimatorTypes))
SweepableEstimatorFactoryGenerator.cs (2)
33
.
SelectMany
(file => Utils.GetEstimatorsFromJson(file.GetText().ToString()).Estimators, (text, estimator) => (estimator.FunctionName, estimator.EstimatorTypes, estimator.SearchOption))
38
.
SelectMany
(file => Utils.GetEstimatorsFromJson(file.GetText().ToString()).Estimators, (text, estimator) => (estimator.FunctionName, estimator.EstimatorTypes, estimator.SearchOption))
System.Collections.Immutable (1)
System\Linq\ImmutableArrayExtensions.cs (1)
60
return Enumerable.
SelectMany
(immutableArray, collectionSelector!, resultSelector!);
System.Linq.Parallel (1)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (1)
202
return CancellableEnumerable.Wrap(Child.AsSequentialQuery(token), token).
SelectMany
(_rightChildSelector, _resultSelector);