Class LogicalExpression
- Namespace
- JsonApiDotNetCore.Queries.Expressions
- Assembly
- JsonApiDotNetCore.dll
This expression allows to test whether one or all of its boolean operands are true. It represents the logical AND/OR filter functions, resulting from
text such as:
and(equals(title,'Work'),has(articles))
, or:
or(equals(title,'Work'),has(articles))
.
[PublicAPI]
public class LogicalExpression : FilterExpression
- Inheritance
-
LogicalExpression
- Inherited Members
Constructors
LogicalExpression(LogicalOperator, params FilterExpression[])
public LogicalExpression(LogicalOperator @operator, params FilterExpression[] terms)
Parameters
operator
LogicalOperatorterms
FilterExpression[]
LogicalExpression(LogicalOperator, IImmutableList<FilterExpression>)
public LogicalExpression(LogicalOperator @operator, IImmutableList<FilterExpression> terms)
Parameters
operator
LogicalOperatorterms
IImmutableList<FilterExpression>
Properties
Operator
The operator used to compare Terms.
public LogicalOperator Operator { get; }
Property Value
Terms
The list of one or more boolean operands.
public IImmutableList<FilterExpression> Terms { get; }
Property Value
Methods
Accept<TArgument, TResult>(QueryExpressionVisitor<TArgument, TResult>, TArgument)
public override TResult Accept<TArgument, TResult>(QueryExpressionVisitor<TArgument, TResult> visitor, TArgument argument)
Parameters
visitor
QueryExpressionVisitor<TArgument, TResult>argument
TArgument
Returns
- TResult
Type Parameters
TArgument
TResult
Compose(LogicalOperator, params FilterExpression?[])
public static FilterExpression? Compose(LogicalOperator @operator, params FilterExpression?[] filters)
Parameters
operator
LogicalOperatorfilters
FilterExpression[]
Returns
Equals(object?)
Determines whether the specified object is equal to the current object.
public override bool Equals(object? obj)
Parameters
obj
objectThe object to compare with the current object.
Returns
GetHashCode()
Serves as the default hash function.
public override int GetHashCode()
Returns
- int
A hash code for the current object.
ToFullString()
public override string ToFullString()
Returns
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.