Table<TEntity>.IQueryProvider.Execute Method

Definition

Overloads

IQueryProvider.Execute(Expression)

Executes the query represented by a specified expression tree.

IQueryProvider.Execute<TResult>(Expression)

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

IQueryProvider.Execute(Expression)

Executes the query represented by a specified expression tree.

 virtual System::Object ^ System.Linq.IQueryProvider.Execute(System::Linq::Expressions::Expression ^ expression) = System::Linq::IQueryProvider::Execute;
object IQueryProvider.Execute (System.Linq.Expressions.Expression expression);
abstract member System.Linq.IQueryProvider.Execute : System.Linq.Expressions.Expression -> obj
override this.System.Linq.IQueryProvider.Execute : System.Linq.Expressions.Expression -> obj
Function Execute (expression As Expression) As Object Implements IQueryProvider.Execute

Parameters

expression
Expression

The query expression to execute.

Returns

The value that results from executing the specified query.

Implements

Remarks

This member is an explicit interface member implementation. It can be used only when the Table<TEntity> instance is cast to an IQueryProvider interface.

Applies to

IQueryProvider.Execute<TResult>(Expression)

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

generic <typename TResult>
 virtual TResult System.Linq.IQueryProvider.Execute(System::Linq::Expressions::Expression ^ expression) = System::Linq::IQueryProvider::Execute;
TResult IQueryProvider.Execute<TResult> (System.Linq.Expressions.Expression expression);
abstract member System.Linq.IQueryProvider.Execute : System.Linq.Expressions.Expression -> 'Result
override this.System.Linq.IQueryProvider.Execute : System.Linq.Expressions.Expression -> 'Result
Function Execute(Of TResult) (expression As Expression) As TResult Implements IQueryProvider.Execute

Type Parameters

TResult

The type of the data in the table.

Parameters

expression
Expression

The query expression to execute.

Returns

TResult

The value that results from executing the specified query.

Implements

Remarks

This member is an explicit interface member implementation. It can be used only when the Table<TEntity> instance is cast to an IQueryProvider interface.

Applies to