Hi everyone, a data modeling question: I am using ...
# room
a
Hi everyone, a data modeling question: I am using Paging3 / RemoteMediator to store paged
Foos
(from network) in Room. There can be some ‘local only’ state (like DownloadManager ID and favorite status) that also needs to be associated with each
Foo
. Would you put those ‘local state’ columns in the same Room table storing the Paged
Foos
, or do a 1:1 relationship with the paged
Foo
table and another table, like
LocalFooState
?