7 references to FindGenericType
System.Core (7)
System\Linq\IQueryable.cs (1)
84Type enumType = TypeHelper.FindGenericType(typeof(IEnumerable<>), source.GetType());
System\Linq\SequenceQuery.cs (2)
80Type iqType = TypeHelper.FindGenericType(typeof(IQueryable<>), expression.Type); 378Type eType = TypeHelper.FindGenericType(typeof(Expression<>), tmp);
System\Linq\TypeHelper.cs (4)
8return FindGenericType(typeof(IEnumerable<>), enumerableType) != null; 11return FindGenericType(definition, type) != null; 14Type ienumType = FindGenericType(typeof(IEnumerable<>), enumerableType); 25Type found = FindGenericType(definition, itype);