Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
IQueryable<(Of <(T>)>) Interface

Updated: September 2008

Provides functionality to evaluate queries against a specific data source wherein the type of the data is known.

Namespace:  System.Linq
Assembly:  System.Core (in System.Core.dll)
Visual Basic (Declaration)
Public Interface IQueryable(Of T) _
    Inherits IEnumerable(Of T), IQueryable, IEnumerable
Visual Basic (Usage)
Dim instance As IQueryable(Of T)
C#
public interface IQueryable<T> : IEnumerable<T>, 
    IQueryable, IEnumerable
Visual C++
generic<typename T>
public interface class IQueryable : IEnumerable<T>, 
    IQueryable, IEnumerable
JScript
JScript does not support generic types or methods.

Type Parameters

T

The type of the data in the data source.

The IQueryable<(Of <(T>)>) interface is intended for implementation by query providers.

This interface inherits the IEnumerable<(Of <(T>)>) interface so that if it represents a query, the results of that query can be enumerated. Enumeration forces the expression tree associated with an IQueryable<(Of <(T>)>) object to be executed. Queries that do not return enumerable results are executed when the Execute<(Of <(TResult>)>)(Expression) method is called.

The definition of "executing an expression tree" is specific to a query provider. For example, it may involve translating the expression tree to a query language appropriate for an underlying data source.

The IQueryable<(Of <(T>)>) interface enables queries to be polymorphic. That is, because a query against an IQueryable data source is represented as an expression tree, it can be executed against different types of data sources.

The static (Shared in Visual Basic) methods defined in the class Queryable (except for AsQueryable, ThenBy, and ThenByDescending) extend objects of types that implement the IQueryable<(Of <(T>)>) interface.

For more information about how to create your own LINQ provider, see Walkthrough: Creating an IQueryable LINQ Provider in the MSDN Library and LINQ: Building an IQueryable Provider on MSDN Blogs.

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5

Date

History

Reason

September 2008

Added links about custom query providers.

Customer feedback.

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker