I have an entity that contains a Date field. How can I properly filter on it? (pure CDS)
Right now, I have something that looks kind of like this:
UpdateContext({ selectedDay: DateAdd( Today(), 7, Days ) });
Set( planning, First( Filter( Projects, Datum=selectedDay ) ) );
However, in about 2 weeks DST will kick in (Netherlands) and suddenly the filter doesn't return a value any more.