I have an event table. I am trying to display a list of all events in the future. I use orm, but I can not understand how much I will choose dates in the future. Filters accept only "=", not ">". I currently have this, but it clearly does not work:
var events = entityLoad("tbl_events",{"eventActive" = 1, "eventDate" > NOW()},"EventDate Asc",{maxResults = count});
source
share