Table of Contents

Class GroupExpression

Namespace
Dynamicweb.Indexing.Querying.Expressions
Assembly
Dynamicweb.Core.dll

The Class FieldExpression represents expression which is actually is group of inner expressions combined by some rule

public class GroupExpression : Expression
Inheritance
GroupExpression
Inherited Members

Properties

Expressions

Gets collection of inner expressions

public IList<Expression> Expressions { get; }

Property Value

IList<Expression>

Negate

Gets or sets value indicates if expression should be consider opposite

public bool Negate { get; set; }

Property Value

bool

Operator

Gets or sets expression operator

public OperatorType Operator { get; set; }

Property Value

OperatorType

Methods

ToString()

Converts expression to string

public override string ToString()

Returns

string

String representation of the group expression if it contains any inner expressions

To top