Restrictions
Direct Reference
// From base ORM service
var restrictions = service.getRestrictions()
// From Criteria Builder
newCriteria().restrictionsBuilding Restrictions
between( property, minValue, maxValue )
conjunction( required array restrictionValues )
disjunction( required array restrictionValues )
isEQ( property, value )
isGT( property, value )
gtProperty( property,otherProperty )
isGE( property,value )
geProperty( property, otherProperty )
idEQ( required any propertyValue )
iLike( required string property, required string propertyValue )
isIn( required string property, required any propertyValue )
isEmpty( required string property )
isNotEmpty( required string property )
isFalse( required string property )
isNull( required string property )
isNotNull( required string property )
isLT( required string property, required any propertyValue )
ltProperty( required string property, required string otherProperty )
isLE( required string property, required any propertyValue )
leProperty( required string property, required string otherProperty )
like( required string property, required string propertyValue )
ne( required string property, required any propertyValue )
neProperty( required string property, required any otherProperty )
sizeEq( required string property, required any propertyValue )
sizeGT( required string property, required any propertyValue )
sizeGE( required string property, required any propertyValue )
sizeLT( required string property, required any propertyValue )
sizeLE( required string property, required any propertyValue )
sizeNE( required string property, required any propertyValue )
sql( required sql, params )
and( Criterion, Criterion, ... )
or( Criterion, Criterion, …. )
isNot( required any criterion )
isTrue( required string property )
Negation
when()
Last updated
Was this helpful?