Hello. Can you recommend a good ORM with Kotlin su...
# android
n
Hello. Can you recommend a good ORM with Kotlin support/extensions? I tried DBFlow (which has Kotlin extensions) but its latest 4.0.2 was way too rough to be usable.
d
nekoinemo: I'm pretty happy with Requery
1
Although I have one eye on Realm and another on Room, also
n
Does it work well with Kotlin?
The "Room"? I haven't even heard of this one
d
Room's from Google but it's still in canary/alpha, not ready for production use
I'm pretty bad at working with databases, so don't take that as 'best practices' or anything...but it does work fine with Kotlin.
n
Thank you
m
You can overcome all the troubles that some ORM carries (bugs, update issues etc.) using something simpler like sqldelight…it will wrap some boilerplate stuff for you but you’ll have full control with sql you want to execute https://github.com/square/sqldelight/
👍🏻 1
n
Thank you