5 references to ToDictionary
System.Core (3)
System\Linq\Enumerable.cs (3)
953
return
ToDictionary
<TSource, TKey, TSource>(source, keySelector, IdentityFunction<TSource>.Instance, null);
957
return
ToDictionary
<TSource, TKey, TSource>(source, keySelector, IdentityFunction<TSource>.Instance, comparer);
961
return
ToDictionary
<TSource, TKey, TElement>(source, keySelector, elementSelector, null);
System.Data.Entity (2)
System\Data\Common\CommandTrees\Internal\Validator.cs (1)
78
var newScope = scopeVariables.
ToDictionary
(var => var.VariableName, var => var.ResultType, StringComparer.Ordinal);
System\Data\Common\CommandTrees\Internal\ViewSimplifier.cs (1)
316
var keyValueMap = keyPropAndValue.
ToDictionary
(pav => pav.Item1, pav => pav.Item2, StringComparer.Ordinal);