Class GreaterThanExpression
The GreaterThanExpression class represents an operation evaluating a field's contents to determine if it is greater than some value.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Social.Common
Assembly: EPiServer.Social.Common.dll
Version: 1.5.4Syntax
public class GreaterThanExpression : BinaryExpression
Constructors
GreaterThanExpression(FieldExpression, ValueExpression)
Constructor
Declaration
public GreaterThanExpression(FieldExpression left, ValueExpression right)
Parameters
| Type | Name | Description |
|---|---|---|
| FieldExpression | left | Left operand in this expression |
| ValueExpression | right | Right operand in this expression |
GreaterThanExpression(FieldExpression, DateTime)
Constructor
Declaration
public GreaterThanExpression(FieldExpression field, DateTime value)
Parameters
| Type | Name | Description |
|---|---|---|
| FieldExpression | field | Expression identifying the field to be evaluated |
| System.DateTime | value | DateTime value to compare |
GreaterThanExpression(FieldExpression, Double)
Constructor
Declaration
public GreaterThanExpression(FieldExpression field, double value)
Parameters
| Type | Name | Description |
|---|---|---|
| FieldExpression | field | Expression identifying the field to be evaluated |
| System.Double | value | Double value to compare |
GreaterThanExpression(FieldExpression, Int64)
Constructor
Declaration
public GreaterThanExpression(FieldExpression field, long value)
Parameters
| Type | Name | Description |
|---|---|---|
| FieldExpression | field | Expression identifying the field to be evaluated |
| System.Int64 | value | Integer value to compare |
Methods
Accept(FilterExpressionVisitor)
Accepts a visitor capable of interpreting this expression.
Declaration
public override void Accept(FilterExpressionVisitor visitor)
Parameters
| Type | Name | Description |
|---|---|---|
| FilterExpressionVisitor | visitor | Visitor to be accepted |