How would I in ColdFusion add <= in my Filter Criteria. I was trying this
EntityLoad("Entity",{someProperty <= value});
but with no luck
How would I in ColdFusion add <= in my Filter Criteria. I was trying this
EntityLoad("Entity",{someProperty <= value});
but with no luck
resultArray = ormExecuteQuery("from Entity where someProperty <= ?", [value])