JoinExpressionBase 构造函数

定义

重载

JoinExpressionBase(TableExpressionBase)

创建 JoinExpressionBase 类的新实例。

JoinExpressionBase(TableExpressionBase, IEnumerable<IAnnotation>)

创建 JoinExpressionBase 类的新实例。

JoinExpressionBase(TableExpressionBase)

创建 JoinExpressionBase 类的新实例。

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)

参数

table
TableExpressionBase

要联接的表源。

适用于

JoinExpressionBase(TableExpressionBase, IEnumerable<IAnnotation>)

创建 JoinExpressionBase 类的新实例。

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))

参数

table
TableExpressionBase

要联接的表源。

annotations
IEnumerable<IAnnotation>

与此表达式关联的批注的集合。

适用于