Share via


OuterApplyExpression Constructors

Definition

Overloads

OuterApplyExpression(TableExpressionBase)

Creates a new instance of the OuterApplyExpression class.

OuterApplyExpression(TableExpressionBase, 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.

OuterApplyExpression(TableExpressionBase)

Source:
OuterApplyExpression.cs
Source:
OuterApplyExpression.cs
Source:
OuterApplyExpression.cs
Source:
OuterApplyExpression.cs
Source:
OuterApplyExpression.cs
Source:
OuterApplyExpression.cs
Source:
OuterApplyExpression.cs

Creates a new instance of the OuterApplyExpression class.

public OuterApplyExpression (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.OuterApplyExpression : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.OuterApplyExpression
Public Sub New (table As TableExpressionBase)

Parameters

table
TableExpressionBase

A table source to OUTER APPLY with.

Applies to

OuterApplyExpression(TableExpressionBase, IReadOnlyDictionary<String,IAnnotation>)

Source:
OuterApplyExpression.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 OuterApplyExpression (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table, System.Collections.Generic.IReadOnlyDictionary<string,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations);
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.OuterApplyExpression : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * System.Collections.Generic.IReadOnlyDictionary<string, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.OuterApplyExpression
Public Sub New (table As TableExpressionBase, annotations As IReadOnlyDictionary(Of String, IAnnotation))

Parameters

Attributes

Applies to