Replies: 1 comment 1 reply
-
If you're accessing tables through a central indexer or directly through the database, that's not a problem at all. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I generate my database from a .drift file. Previously I was just using an
extension
on my database for dao's. Now I got aware of the DAO support and consider migrating my code. I don't really understand why it is necessary to specifytables
,queries
etc. in the annotation? In my case I have an indexer dao that basically fills all tables in the database from various different data sources. In a first test without specifying anything (=@DriftAccessor()
) everything works as expected. I'm a bit worried that I might lead to inconsistencies later and I forget to update the annotation when working on the implementation. Do I have any downsides when just using the default annotation?Beta Was this translation helpful? Give feedback.
All reactions