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