2 instantiations of EnumerableQuery
System.Linq.Queryable (2)
System\Linq\EnumerableQuery.cs (1)
81return new EnumerableQuery<TElement>(expression);
System\Linq\Queryable.cs (1)
22return source as IQueryable<TElement> ?? new EnumerableQuery<TElement>(source);
4 references to EnumerableQuery
netstandard (1)
netstandard.cs (1)
985[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Linq.EnumerableQuery<>))]
System.Core (1)
System.Core.cs (1)
123[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Linq.EnumerableQuery<>))]
System.Linq.Queryable (2)
System\Linq\EnumerableQuery.cs (2)
22Type seqType = typeof(EnumerableQuery<>).MakeGenericType(elementType); 30Type seqType = typeof(EnumerableQuery<>).MakeGenericType(elementType);