.NET Framework Class Library
IQueryProvider..::.Execute<(Of <(TResult>)>) Method (Expression)

Executes the strongly-typed query represented by a specified expression tree.

Namespace:  System.Linq
Assembly:  System.Core (in System.Core.dll)
Syntax

Visual Basic (Declaration)
Function Execute(Of TResult) ( _
    expression As Expression _
) As TResult
Visual Basic (Usage)
Dim instance As IQueryProvider
Dim expression As Expression
Dim returnValue As TResult

returnValue = instance.Execute(expression)
C#
TResult Execute<TResult>(
    Expression expression
)
Visual C++
generic<typename TResult>
TResult Execute(
    Expression^ expression
)
JScript
JScript does not support generic types or methods.

Type Parameters

TResult

The type of the value that results from executing the query.

Parameters

expression
Type: System.Linq.Expressions..::.Expression
An expression tree that represents a LINQ query.

Return Value

Type: TResult
The value that results from executing the specified query.
Remarks

The Execute method executes queries that return a single value (instead of an enumerable sequence of values). Expression trees that represent queries that return enumerable results are executed when the IQueryable<(Of <(T>)>) object that contains the expression tree is enumerated.

The Queryable standard query operator methods that return singleton results call Execute. They pass it a MethodCallExpression that represents a LINQ query.

Platforms

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.
Version Information

.NET Framework

Supported in: 3.5
See Also

Reference

Tags :


Page view tracker