-
I've tried generating a model with no remote repository and I've written some rows to the database something I'm noticing is that the records that have persisted so far do not yet have an ID. I have some data I would like to keep local such settings or downloads specific to a device, but I was hoping to be able to use flutter data for all data access. So I just wanted to confirm if my use case is normal and if so perhaps I'm missing something? 😅 is it as simple as just managing local record IDs myself? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Yes! I like to use |
Beta Was this translation helpful? Give feedback.
Yes! I like to use
@DataRepository([], remote: false)
to make all calls local by default.