|
|
|
|
|
by karunamurti
609 days ago
|
|
Sea ORM is too opinionated in my experience. Even making migration is not trivial with their own DSL.
Diesel was ok, but I never use it anymore since rocket moved to async. I'm mainly use sqlx, it's simple to use, there's query! and query_as! macro which is good enough for most of the case. |
|
I remember fighting with handling enums in relations for a while, and now just default to manually mapping everything.