Partager via


InnerJoinExpression Constructors

Definition

Overloads

InnerJoinExpression(TableExpressionBase, SqlExpression)

Creates a new instance of the InnerJoinExpression class.

InnerJoinExpression(TableExpressionBase, SqlExpression, Boolean)

Creates a new instance of the InnerJoinExpression class.

InnerJoinExpression(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.

InnerJoinExpression(TableExpressionBase, SqlExpression)

Source:
InnerJoinExpression.cs
Source:
InnerJoinExpression.cs
Source:
InnerJoinExpression.cs
Source:
InnerJoinExpression.cs
Source:
InnerJoinExpression.cs
Source:
InnerJoinExpression.cs

Creates a new instance of the InnerJoinExpression class.

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

Parameters

table
TableExpressionBase

A table source to INNER JOIN with.

joinPredicate
SqlExpression

A predicate to use for the join.

Applies to

InnerJoinExpression(TableExpressionBase, SqlExpression, Boolean)

Source:
InnerJoinExpression.cs

Creates a new instance of the InnerJoinExpression class.

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

Parameters

table
TableExpressionBase

A table source to INNER 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

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

Source:
InnerJoinExpression.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 InnerJoinExpression (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression joinPredicate, bool prunable, System.Collections.Generic.IReadOnlyDictionary<string,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations);
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.InnerJoinExpression : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression * bool * System.Collections.Generic.IReadOnlyDictionary<string, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.InnerJoinExpression
Public Sub New (table As TableExpressionBase, joinPredicate As SqlExpression, prunable As Boolean, annotations As IReadOnlyDictionary(Of String, IAnnotation))

Parameters

joinPredicate
SqlExpression
prunable
Boolean
Attributes

Applies to