Share via


TableExpressionBase Constructors

Definition

Overloads

TableExpressionBase(String)

Creates a new instance of the TableExpressionBase class.

TableExpressionBase(String, IEnumerable<IAnnotation>)

Creates a new instance of the TableExpressionBase class.

TableExpressionBase(String)

Creates a new instance of the TableExpressionBase class.

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)

Parameters

alias
String

A string alias for the table source.

Applies to

TableExpressionBase(String, IEnumerable<IAnnotation>)

Creates a new instance of the TableExpressionBase class.

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

Parameters

alias
String

A string alias for the table source.

annotations
IEnumerable<IAnnotation>

A collection of annotations associated with this expression.

Applies to