Difference between Rexie and Rexiebuilder #18
-
looking at the documentation, I'm a bit confused. Can you please explain the difference between |
Beta Was this translation helpful? Give feedback.
Answered by
devashishdxt
Jun 14, 2022
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
devashishdxt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
RexieBuilder
is just a Builder forRexie
. You can get an instance ofRexieBuilder
fromRexie::builder()
and after configuration, obtain the finalRexie
instance usingRexieBuilder::build()
.