Delen via


INavigationExpansionExtensibilityHelper.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 bool AreQueryRootsCompatible (Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression? first, Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression? second);
abstract member AreQueryRootsCompatible : Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression * Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression -> bool
Public Function AreQueryRootsCompatible (first As EntityQueryRootExpression, second As EntityQueryRootExpression) As Boolean

Parameters

first
EntityQueryRootExpression

The first query root.

second
EntityQueryRootExpression

The second query root.

Returns

Applies to

AreQueryRootsCompatible(QueryRootExpression, QueryRootExpression)

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

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

Parameters

first
QueryRootExpression

The first query root.

second
QueryRootExpression

The second query root.

Returns

Applies to