Confirming comparative operators don't work for xojo.core.date objects

Using xojo.core
If d1 > d2 Then

did not yield the same result (nor the correct result) as

If d1.SecondsFrom1970 > d2.SecondsFrom1970 then

which did produce the expected results.

Is this behavior expected: comparing date objects themselves will not work in the new framework?

Expected. Xojo.Core.Date does not support operator comparisons.