SaaS CMS has officially launched! Learn more now.

Class BetweenExpression

Summary description for BetweenExpression.

Inheritance
System.Object
BetweenExpression
Implements
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
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.BaseLibrary.Search
Assembly: EPiServer.BaseLibrary.dll
Version: 7.19.2
Syntax
public class BetweenExpression : IExpression

Constructors

BetweenExpression(String, IComparable, IComparable)

Declaration
public BetweenExpression(string column, IComparable min, IComparable max)
Parameters
Type Name Description
System.String column
System.IComparable min
System.IComparable max

Properties

Column

Declaration
public string Column { get; }
Property Value
Type Description
System.String

Max

Declaration
public IComparable Max { get; }
Property Value
Type Description
System.IComparable

Min

Declaration
public IComparable Min { get; }
Property Value
Type Description
System.IComparable

Methods

IsCriteriaTrue(Object[])

Declaration
public bool IsCriteriaTrue(params object[] values)
Parameters
Type Name Description
System.Object[] values
Returns
Type Description
System.Boolean

Implements