Delen via


InlineQueryRootExpression Constructors

Definition

Overloads

InlineQueryRootExpression(IReadOnlyList<Expression>, Type)

Creates a new instance of the InlineQueryRootExpression class.

InlineQueryRootExpression(IAsyncQueryProvider, IReadOnlyList<Expression>, Type)

Creates a new instance of the InlineQueryRootExpression class.

InlineQueryRootExpression(IReadOnlyList<Expression>, Type)

Creates a new instance of the InlineQueryRootExpression class.

public InlineQueryRootExpression (System.Collections.Generic.IReadOnlyList<System.Linq.Expressions.Expression> values, Type elementType);
new Microsoft.EntityFrameworkCore.Query.InlineQueryRootExpression : System.Collections.Generic.IReadOnlyList<System.Linq.Expressions.Expression> * Type -> Microsoft.EntityFrameworkCore.Query.InlineQueryRootExpression
Public Sub New (values As IReadOnlyList(Of Expression), elementType As Type)

Parameters

values
IReadOnlyList<Expression>

An expression containing the values that this query root represents.

elementType
Type

The element type this query root represents.

Applies to

InlineQueryRootExpression(IAsyncQueryProvider, IReadOnlyList<Expression>, Type)

Creates a new instance of the InlineQueryRootExpression class.

public InlineQueryRootExpression (Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider asyncQueryProvider, System.Collections.Generic.IReadOnlyList<System.Linq.Expressions.Expression> values, Type elementType);
new Microsoft.EntityFrameworkCore.Query.InlineQueryRootExpression : Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider * System.Collections.Generic.IReadOnlyList<System.Linq.Expressions.Expression> * Type -> Microsoft.EntityFrameworkCore.Query.InlineQueryRootExpression
Public Sub New (asyncQueryProvider As IAsyncQueryProvider, values As IReadOnlyList(Of Expression), elementType As Type)

Parameters

asyncQueryProvider
IAsyncQueryProvider

The query provider associated with this query root.

values
IReadOnlyList<Expression>

The values contained in this query root.

elementType
Type

The element type this query root represents.

Applies to