DecoratedPredicate

Represents a condition predicate that applies a decoration to the column.

Namespace:
KpokPatagon.Data.Query
Type:
Class
Public:
Yes
Protected:
No
Sealed:
No
Abstract:
No
Inherits from:
KpokPatagon.Data.Query.Predicate

Constructors

DecoratedPredicate

Initializes a new instance of DecoratedColumnPredicate.

Signature:
public Void DecoratedPredicate(column, op, value, useParenthesis)
Parameters
Name Type Summary
column DecoratedPredicateColumn Column to which the predicate acts on.
op ComparisonOperator Comparison operator.
value Object Comparison value.
useParenthesis Boolean Whether the predicate must be enclosed in parenthesis.

DecoratedPredicate

Initializes a new instance of DecoratedColumnPredicate.

Signature:
public Void DecoratedPredicate(relation, column, op, value, useParenthesis)
Parameters
Name Type Summary
relation RelationalOperator Relation with the preceding predicate.
column DecoratedPredicateColumn Column to which the predicate acts on.
op ComparisonOperator Comparison operator.
value Object Comparison value.
useParenthesis Boolean Whether the predicate must be enclosed in parenthesis.

Properties

Column

Column to which the predicate acts on.

Signature:
public DecoratedPredicateColumn Column { get; set; }

Operator

Comparison operator.

Signature:
public ComparisonOperator Operator { get; set; }

Value

Comparison value.

Signature:
public Object Value { get; set; }