5
¿Cómo puedo en ColdFusion agregar < = en mis criterios de filtro. Estaba tratando esteColdFusion EntityLoad Filter
EntityLoad("Entity",{someProperty <= value});
pero sin suerte
¿Cómo puedo en ColdFusion agregar < = en mis criterios de filtro. Estaba tratando esteColdFusion EntityLoad Filter
EntityLoad("Entity",{someProperty <= value});
pero sin suerte
resultArray = ormExecuteQuery("from Entity where someProperty <= ?", [value])
Ah bien :) pensé que había una manera con sólo EntityLoad. ¡Gracias! –