Class UnionBranch
One composed union branch: the entity type, its filters and its projection into the common shape.
public abstract class UnionBranch
- Inheritance
-
UnionBranch
- Derived
- Inherited Members
Properties
EntityType
The entity type the branch reads.
public Type EntityType { get; }
Property Value
Filters
The branch's predicates, ANDed together (and with the entity's global filter unless opted out).
public IReadOnlyList<LambdaExpression> Filters { get; }
Property Value
IgnoreQueryFilters
Whether the branch opted out of the entity's global query filter.
public bool IgnoreQueryFilters { get; }
Property Value
Projection
The projection into the common result shape.
public LambdaExpression Projection { get; }