Shaolinq.TypeExtensions.IsQueryable C# (CSharp) Method

IsQueryable() public static method

public static IsQueryable ( this type ) : bool
type this
return bool
		public static bool IsQueryable(this Type type)
		{
			return typeof(IQueryable<>).IsAssignableFromIgnoreGenericParameters(type);
		}