Here's some unexpected behavior I encountered. When attempting to filter a (CDS) data source based on a date, I encountered a 'delegation warning'. After analysis, this turned out to be the result of a 'With' construction:
With({
mindate: DateAdd( Today(), -7, Days )
},
Filter( Projects, Datum >= mindate )
);
Is there any explanation for this?
I was poking around a bit, and it seems to be tied to only a With/Today() setup, as you can observe from the following screenshot:

What's happening here?