Share via


JoinExpressionBase Constructors

Definition

Overloads

JoinExpressionBase(TableExpressionBase)

Creates a new instance of the JoinExpressionBase class.

JoinExpressionBase(TableExpressionBase, IEnumerable<IAnnotation>)

Creates a new instance of the JoinExpressionBase class.

JoinExpressionBase(TableExpressionBase)

Creates a new instance of the JoinExpressionBase class.

protected JoinExpressionBase (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.JoinExpressionBase : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.JoinExpressionBase
Protected Sub New (table As TableExpressionBase)

Parameters

table
TableExpressionBase

A table source to join with.

Applies to

JoinExpressionBase(TableExpressionBase, IEnumerable<IAnnotation>)

Creates a new instance of the JoinExpressionBase class.

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

Parameters

table
TableExpressionBase

A table source to join with.

annotations
IEnumerable<IAnnotation>

A collection of annotations associated with this expression.

Applies to