You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a data class that contains some timestamps with the type java.time.OffsetDateTime.
Now I want to write (or better to say: let generate) a derived query that does filtering with isBefore and isAfter on such a OffsetDateTime field.
When those queries are generated I receive an error that isBefore/isAfter can not be used together with OffsetDateTime.
When looking at the error message I am asking myself:
Why is OffsetDateTime and LocalTime not supported?
Why is OffsetTime (which I never heard of yet) supported?
What can I do as a workaround?
The text was updated successfully, but these errors were encountered:
I have a data class that contains some timestamps with the type
java.time.OffsetDateTime
.Now I want to write (or better to say: let generate) a derived query that does filtering with
isBefore
andisAfter
on such a OffsetDateTime field.When those queries are generated I receive an error that isBefore/isAfter can not be used together with OffsetDateTime.
When looking at the error message I am asking myself:
Why is OffsetDateTime and LocalTime not supported?
Why is OffsetTime (which I never heard of yet) supported?
What can I do as a workaround?
The text was updated successfully, but these errors were encountered: