INavigationExpansionExtensibilityHelper.AreQueryRootsCompatible Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
Entity Framework