DataServiceQueryProvider.Execute Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
the results