Hi everyone!
I have a question regarding Next.js with Drizzle. I previously used Prisma, but I've seen in several places that Drizzle is faster and more efficient with queries. However, I feel like I'm doing something wrong or is it really this much of a hassle to write?
There's a lot of boilerplate initially, but my problem is that you really have to import the tables one by one for a query? And the autocomplete doesn't work with the tables, also it brings up the window (CTRL + Space) very slowly. What's even more annoying is that for a select, it doesn't suggest the column names within the table with CTRL + Space, so I have to write these out myself, which means there's no type safety.
Is something misconfigured on my end, or is this the usual way to use it?
Additionally, what I find strange is that the whole thing is quite new, but already almost every tutorial is outdated because the syntax has changed as far as I can see.
Thank you in advance!