Freigeben über


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, IReadOnlyDictionary<String,IAnnotation>)

Creates a new instance of the TableExpressionBase class.

TableExpressionBase(String)

Source:
TableExpressionBase.cs
Source:
TableExpressionBase.cs
Source:
TableExpressionBase.cs
Source:
TableExpressionBase.cs
Source:
TableExpressionBase.cs
Source:
TableExpressionBase.cs

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

Source:
TableExpressionBase.cs
Source:
TableExpressionBase.cs
Source:
TableExpressionBase.cs

Creates a new instance of the TableExpressionBase class.

protected TableExpressionBase (string? alias, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations);
protected TableExpressionBase (string? alias, System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations = default);
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))
Protected Sub New (alias As String, Optional annotations As IEnumerable(Of IAnnotation) = Nothing)

Parameters

alias
String

A string alias for the table source.

annotations
IEnumerable<IAnnotation>

A collection of annotations associated with this table expression.

Applies to

TableExpressionBase(String, IReadOnlyDictionary<String,IAnnotation>)

Source:
TableExpressionBase.cs

Creates a new instance of the TableExpressionBase class.

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

Parameters

alias
String

A string alias for the table source.

annotations
IReadOnlyDictionary<String,IAnnotation>

A collection of annotations associated with this expression.

Applies to