Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Java by Isk ( 13 years ago )
IndependentObjectSet allPositionsInsideOrgUnit = new CeCriteria(objectStore, FnClassNames.POSITION)
.setProperties(new String[]{PropertyNames.ID})
.setPropFilterAsArray(new String[]{PropertyNames.ID})
.add(CeRestrictions.disjunction()
.add(CeRestrictions.eq("name", "nameValue"))
.add(CeRestrictions.between("TabNumber", 12, 15))
.add(CeRestrictions.gt("age", 18))
)
.add(CeRestrictions.inSubfolder(id))
.add(CeRestrictions.isNull("Resume"))
.asIndependentObjectSet();
Revise this Paste