mscorlib(4.0.0.0) API with additions
IQueryable.cs
1 using System.Collections;
4 
5 namespace System.Linq
6 {
8  [global::__DynamicallyInvokable]
9  public interface IQueryable : IEnumerable
10  {
13  [global::__DynamicallyInvokable]
15  {
16  [global::__DynamicallyInvokable]
17  get;
18  }
19 
22  [global::__DynamicallyInvokable]
23  Type ElementType
24  {
25  [global::__DynamicallyInvokable]
26  get;
27  }
28 
31  [global::__DynamicallyInvokable]
32  IQueryProvider Provider
33  {
34  [global::__DynamicallyInvokable]
35  get;
36  }
37  }
40  [global::__DynamicallyInvokable]
41  public interface IQueryable<out T> : IEnumerable<T>, IEnumerable, IQueryable
42  {
43  }
44 }
Definition: __Canon.cs:3
Exposes an enumerator, which supports a simple iteration over a non-generic collection....
Definition: IEnumerable.cs:9
Provides the base class from which the classes that represent expression tree nodes are derived....
Definition: Expression.cs:17
Represents type declarations: class types, interface types, array types, value types,...
Definition: Type.cs:18
Provides functionality to evaluate queries against a specific data source wherein the type of the dat...
Definition: IQueryable.cs:9
Defines methods to create and execute queries that are described by an T:System.Linq....