InExpression Constructors

Definition

Overloads

InExpression(AliasExpression, SelectExpression)

Creates a new instance of InExpression.

InExpression(AliasExpression, IReadOnlyList<Expression>)

Creates a new instance of InExpression.

InExpression(Expression, SelectExpression)

Creates a new instance of InExpression.

InExpression(Expression, IReadOnlyList<Expression>)

Creates a new instance of InExpression.

InExpression(AliasExpression, SelectExpression)

Creates a new instance of InExpression.

public InExpression (Microsoft.EntityFrameworkCore.Query.Expressions.AliasExpression operand, Microsoft.EntityFrameworkCore.Query.Expressions.SelectExpression subQuery);
new Microsoft.EntityFrameworkCore.Query.Expressions.InExpression : Microsoft.EntityFrameworkCore.Query.Expressions.AliasExpression * Microsoft.EntityFrameworkCore.Query.Expressions.SelectExpression -> Microsoft.EntityFrameworkCore.Query.Expressions.InExpression
Public Sub New (operand As AliasExpression, subQuery As SelectExpression)

Parameters

operand
AliasExpression

The operand.

subQuery
SelectExpression

The sub query.

Applies to

InExpression(AliasExpression, IReadOnlyList<Expression>)

Creates a new instance of InExpression.

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

Parameters

operand
AliasExpression

The operand.

values
IReadOnlyList<Expression>

The values.

Applies to

InExpression(Expression, SelectExpression)

Creates a new instance of InExpression.

public InExpression (System.Linq.Expressions.Expression operand, Microsoft.EntityFrameworkCore.Query.Expressions.SelectExpression subQuery);
new Microsoft.EntityFrameworkCore.Query.Expressions.InExpression : System.Linq.Expressions.Expression * Microsoft.EntityFrameworkCore.Query.Expressions.SelectExpression -> Microsoft.EntityFrameworkCore.Query.Expressions.InExpression
Public Sub New (operand As Expression, subQuery As SelectExpression)

Parameters

operand
Expression

The operand.

subQuery
SelectExpression

The sub query.

Applies to

InExpression(Expression, IReadOnlyList<Expression>)

Creates a new instance of InExpression.

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

Parameters

operand
Expression

The operand.

values
IReadOnlyList<Expression>

The values.

Applies to