Share via


PredicateJoinExpressionBase Constructors

Definition

Overloads

PredicateJoinExpressionBase(TableExpressionBase, SqlExpression)

Creates a new instance of the PredicateJoinExpressionBase class.

PredicateJoinExpressionBase(TableExpressionBase, SqlExpression, IEnumerable<IAnnotation>)

Creates a new instance of the PredicateJoinExpressionBase class.

PredicateJoinExpressionBase(TableExpressionBase, SqlExpression)

Creates a new instance of the PredicateJoinExpressionBase class.

protected PredicateJoinExpressionBase (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression joinPredicate);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.PredicateJoinExpressionBase : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.PredicateJoinExpressionBase
Protected Sub New (table As TableExpressionBase, joinPredicate As SqlExpression)

Parameters

table
TableExpressionBase

A table source to join with.

joinPredicate
SqlExpression

A predicate to use for the join.

Applies to

PredicateJoinExpressionBase(TableExpressionBase, SqlExpression, IEnumerable<IAnnotation>)

Creates a new instance of the PredicateJoinExpressionBase class.

protected PredicateJoinExpressionBase (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression joinPredicate, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.PredicateJoinExpressionBase : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression * seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.PredicateJoinExpressionBase
Protected Sub New (table As TableExpressionBase, joinPredicate As SqlExpression, annotations As IEnumerable(Of IAnnotation))

Parameters

table
TableExpressionBase

A table source to join with.

joinPredicate
SqlExpression

A predicate to use for the join.

annotations
IEnumerable<IAnnotation>

A collection of annotations associated with this expression.

Applies to