Share via


LeftJoinExpression Constructors

Definition

Overloads

LeftJoinExpression(TableExpressionBase, SqlExpression)

Creates a new instance of the LeftJoinExpression class.

LeftJoinExpression(TableExpressionBase, SqlExpression, Boolean)

Creates a new instance of the LeftJoinExpression class.

LeftJoinExpression(TableExpressionBase, SqlExpression, Boolean, IReadOnlyDictionary<String,IAnnotation>)

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

LeftJoinExpression(TableExpressionBase, SqlExpression)

Source:
LeftJoinExpression.cs
Source:
LeftJoinExpression.cs
Source:
LeftJoinExpression.cs
Source:
LeftJoinExpression.cs
Source:
LeftJoinExpression.cs
Source:
LeftJoinExpression.cs

Creates a new instance of the LeftJoinExpression class.

public LeftJoinExpression (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression joinPredicate);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.LeftJoinExpression : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.LeftJoinExpression
Public Sub New (table As TableExpressionBase, joinPredicate As SqlExpression)

Parameters

table
TableExpressionBase

A table source to LEFT JOIN with.

joinPredicate
SqlExpression

A predicate to use for the join.

Applies to

LeftJoinExpression(TableExpressionBase, SqlExpression, Boolean)

Source:
LeftJoinExpression.cs

Creates a new instance of the LeftJoinExpression class.

public LeftJoinExpression (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression joinPredicate, bool prunable = false);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.LeftJoinExpression : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression * bool -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.LeftJoinExpression
Public Sub New (table As TableExpressionBase, joinPredicate As SqlExpression, Optional prunable As Boolean = false)

Parameters

table
TableExpressionBase

A table source to LEFT JOIN with.

joinPredicate
SqlExpression

A predicate to use for the join.

prunable
Boolean

Whether this join expression may be pruned if nothing references a column on it.

Applies to

LeftJoinExpression(TableExpressionBase, SqlExpression, Boolean, IReadOnlyDictionary<String,IAnnotation>)

Source:
LeftJoinExpression.cs

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
public LeftJoinExpression (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression joinPredicate, bool prunable, System.Collections.Generic.IReadOnlyDictionary<string,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations = default);
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.LeftJoinExpression : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression * bool * System.Collections.Generic.IReadOnlyDictionary<string, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.LeftJoinExpression
Public Sub New (table As TableExpressionBase, joinPredicate As SqlExpression, prunable As Boolean, Optional annotations As IReadOnlyDictionary(Of String, IAnnotation) = Nothing)

Parameters

joinPredicate
SqlExpression
prunable
Boolean
Attributes

Applies to