Share via


TableExpression Constructors

Definition

Overloads

TableExpression(String, ITableBase)

Creates a new instance of the TableExpression class.

TableExpression(String, ITableBase, IReadOnlyDictionary<String,IAnnotation>)

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

TableExpression(String, ITableBase)

Source:
TableExpression.cs

Creates a new instance of the TableExpression class.

public TableExpression (string alias, Microsoft.EntityFrameworkCore.Metadata.ITableBase table);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpression : string * Microsoft.EntityFrameworkCore.Metadata.ITableBase -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpression
Public Sub New (alias As String, table As ITableBase)

Parameters

alias
String
table
ITableBase

Applies to

TableExpression(String, ITableBase, IReadOnlyDictionary<String,IAnnotation>)

Source:
TableExpression.cs

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
public TableExpression (string alias, Microsoft.EntityFrameworkCore.Metadata.ITableBase table, System.Collections.Generic.IReadOnlyDictionary<string,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations);
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpression : string * Microsoft.EntityFrameworkCore.Metadata.ITableBase * System.Collections.Generic.IReadOnlyDictionary<string, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpression
Public Sub New (alias As String, table As ITableBase, annotations As IReadOnlyDictionary(Of String, IAnnotation))

Parameters

alias
String
table
ITableBase
Attributes

Applies to