Does kotlin have good orm/migration for db operati...
# getting-started
t
Does kotlin have good orm/migration for db operation like active record for ruby on rails or ecto for phoenix?
b
You can try Hibernate, if you are on JVM
n
komapper
a
Regarding migrations, you could try https://www.liquibase.org/ or https://flywaydb.org/ - run on JVM, but are not Kotlin-only.
b
Jetbrains publishes an ORM called Exposed that covers a lot of the basic functionality. the DSL is pretty great if the functionality is a little thin sometimes.