TableExpressionBase 构造函数

定义

重载

TableExpressionBase(String)

创建 TableExpressionBase 类的新实例。

TableExpressionBase(String, IEnumerable<IAnnotation>)

创建 TableExpressionBase 类的新实例。

TableExpressionBase(String)

创建 TableExpressionBase 类的新实例。

protected TableExpressionBase (string alias);
protected TableExpressionBase (string? alias);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase : string -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase
Protected Sub New (alias As String)

参数

alias
String

表源的字符串别名。

适用于

TableExpressionBase(String, IEnumerable<IAnnotation>)

创建 TableExpressionBase 类的新实例。

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

参数

alias
String

表源的字符串别名。

annotations
IEnumerable<IAnnotation>

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

适用于