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