DataServiceQueryProvider.Execute Method

Definition

Overloads

Execute(Expression)

Creates and executes a DataServiceQuery based on the passed in expression

Execute<TResult>(Expression)

Creates and executes a DataServiceQuery based on the passed in expression

Execute(Expression)

Creates and executes a DataServiceQuery based on the passed in expression

public object Execute (System.Linq.Expressions.Expression expression);
abstract member Execute : System.Linq.Expressions.Expression -> obj
override this.Execute : System.Linq.Expressions.Expression -> obj
Public Function Execute (expression As Expression) As Object

Parameters

expression
Expression

The expression for the new query

Returns

the results

Implements

Applies to

Execute<TResult>(Expression)

Creates and executes a DataServiceQuery based on the passed in expression

public TResult Execute<TResult> (System.Linq.Expressions.Expression expression);
abstract member Execute : System.Linq.Expressions.Expression -> 'Result
override this.Execute : System.Linq.Expressions.Expression -> 'Result
Public Function Execute(Of TResult) (expression As Expression) As TResult

Type Parameters

TResult

generic type

Parameters

expression
Expression

The expression for the new query

Returns

TResult

the results

Implements

Applies to