Share via


SelectExpression.CreateImmutable Method

Definition

Overloads

Name Description
CreateImmutable(String, List<TableExpressionBase>, List<ProjectionExpression>)

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.

CreateImmutable(String, List<TableExpressionBase>, List<ProjectionExpression>, SqlAliasManager)

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.

CreateImmutable(String, List<TableExpressionBase>, List<ProjectionExpression>)

Source:
SelectExpression.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 static Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression CreateImmutable(string alias, System.Collections.Generic.List<Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase> tables, System.Collections.Generic.List<Microsoft.EntityFrameworkCore.Query.SqlExpressions.ProjectionExpression> projection);
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
static member CreateImmutable : string * System.Collections.Generic.List<Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase> * System.Collections.Generic.List<Microsoft.EntityFrameworkCore.Query.SqlExpressions.ProjectionExpression> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression
Public Shared Function CreateImmutable (alias As String, tables As List(Of TableExpressionBase), projection As List(Of ProjectionExpression)) As SelectExpression

Parameters

alias
String

Returns

Attributes

Applies to

CreateImmutable(String, List<TableExpressionBase>, List<ProjectionExpression>, SqlAliasManager)

Source:
SelectExpression.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 static Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression CreateImmutable(string alias, System.Collections.Generic.List<Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase> tables, System.Collections.Generic.List<Microsoft.EntityFrameworkCore.Query.SqlExpressions.ProjectionExpression> projection, Microsoft.EntityFrameworkCore.Query.SqlAliasManager sqlAliasManager);
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
static member CreateImmutable : string * System.Collections.Generic.List<Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase> * System.Collections.Generic.List<Microsoft.EntityFrameworkCore.Query.SqlExpressions.ProjectionExpression> * Microsoft.EntityFrameworkCore.Query.SqlAliasManager -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression
Public Shared Function CreateImmutable (alias As String, tables As List(Of TableExpressionBase), projection As List(Of ProjectionExpression), sqlAliasManager As SqlAliasManager) As SelectExpression

Parameters

alias
String
sqlAliasManager
SqlAliasManager

Returns

Attributes

Applies to