Get our hibernate org.hibernate.criterion.Restrictions proxy object
Returns
This function returns coldbox.system.orm.hibernate.criterion.Restrictions
Examples
// Restrictions used with criteria queriesvar r =ormService.getRestrictions();var users =ormService.newCriteria("User").or( r.eq("lastName","majano"),r.gt("createDate",now()) ).list();