Share via


NavigationExpansionExtensibilityHelper.AreQueryRootsCompatible Method

Definition

Overloads

AreQueryRootsCompatible(EntityQueryRootExpression, EntityQueryRootExpression)

Checks whether two query roots are compatible for a set operation to combine them.

AreQueryRootsCompatible(QueryRootExpression, QueryRootExpression)

Checks whether two query roots are compatible for a set operation to combine them.

AreQueryRootsCompatible(EntityQueryRootExpression, EntityQueryRootExpression)

Checks whether two query roots are compatible for a set operation to combine them.

public virtual bool AreQueryRootsCompatible (Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression? first, Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression? second);
abstract member AreQueryRootsCompatible : Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression * Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression -> bool
override this.AreQueryRootsCompatible : Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression * Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression -> bool
Public Overridable Function AreQueryRootsCompatible (first As EntityQueryRootExpression, second As EntityQueryRootExpression) As Boolean

Parameters

first
EntityQueryRootExpression

The first query root.

second
EntityQueryRootExpression

The second query root.

Returns

Implements

Applies to

AreQueryRootsCompatible(QueryRootExpression, QueryRootExpression)

Checks whether two query roots are compatible for a set operation to combine them.

public virtual bool AreQueryRootsCompatible (Microsoft.EntityFrameworkCore.Query.QueryRootExpression? first, Microsoft.EntityFrameworkCore.Query.QueryRootExpression? second);
abstract member AreQueryRootsCompatible : Microsoft.EntityFrameworkCore.Query.QueryRootExpression * Microsoft.EntityFrameworkCore.Query.QueryRootExpression -> bool
override this.AreQueryRootsCompatible : Microsoft.EntityFrameworkCore.Query.QueryRootExpression * Microsoft.EntityFrameworkCore.Query.QueryRootExpression -> bool
Public Overridable Function AreQueryRootsCompatible (first As QueryRootExpression, second As QueryRootExpression) As Boolean

Parameters

first
QueryRootExpression

The first query root.

second
QueryRootExpression

The second query root.

Returns

Implements

Applies to