I have a data class with a field of type OffsetDateTime
. With the room database, I have the following error:
Cannot figure out how to read this field from a cursor. private final java.time.OffsetDateTime
How can I fix this? Thanks
I have a data class with a field of type OffsetDateTime
. With the room database, I have the following error:
Cannot figure out how to read this field from a cursor. private final java.time.OffsetDateTime
How can I fix this? Thanks
Copyright © 2021 Jogjafile Inc.
To persist Date Object in Roomdb, you need to use Type Converters
Example given here will give you a better idea: Referencing complex data using Room