|
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? |
Answered by
frank06
Jan 18, 2023
Replies: 1 comment 4 replies
|
Yes! I like to use |
4 replies
Answer selected by
wardy484
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes! I like to use
@DataRepository([], remote: false)to make all calls local by default.