Partager via


IntersectExpression Constructors

Definition

Overloads

IntersectExpression(String, SelectExpression, SelectExpression, Boolean)

Creates a new instance of the IntersectExpression class.

IntersectExpression(String, SelectExpression, SelectExpression, Boolean, 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.

IntersectExpression(String, SelectExpression, SelectExpression, Boolean)

Source:
IntersectExpression.cs
Source:
IntersectExpression.cs
Source:
IntersectExpression.cs
Source:
IntersectExpression.cs
Source:
IntersectExpression.cs
Source:
IntersectExpression.cs
Source:
IntersectExpression.cs

Creates a new instance of the IntersectExpression class.

public IntersectExpression (string alias, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression source1, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression source2, bool distinct);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.IntersectExpression : string * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * bool -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.IntersectExpression
Public Sub New (alias As String, source1 As SelectExpression, source2 As SelectExpression, distinct As Boolean)

Parameters

alias
String

A string alias for the table source.

source1
SelectExpression

A table source which is first source in the set operation.

source2
SelectExpression

A table source which is second source in the set operation.

distinct
Boolean

A bool value indicating whether result will remove duplicate rows.

Applies to

IntersectExpression(String, SelectExpression, SelectExpression, Boolean, IReadOnlyDictionary<String,IAnnotation>)

Source:
IntersectExpression.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 IntersectExpression (string alias, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression source1, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression source2, bool distinct, System.Collections.Generic.IReadOnlyDictionary<string,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>? annotations);
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.IntersectExpression : string * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * bool * System.Collections.Generic.IReadOnlyDictionary<string, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.IntersectExpression
Public Sub New (alias As String, source1 As SelectExpression, source2 As SelectExpression, distinct As Boolean, annotations As IReadOnlyDictionary(Of String, IAnnotation))

Parameters

alias
String
distinct
Boolean
Attributes

Applies to