-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ORM or similar tooling #219
Comments
Good question, I haven't tried any existing ORM yet |
One thing that might be a good one is Ent. https://entgo.io/ Why ? Its code generation based and very easy to use. Its not an ORM that takes over too much. The thing with all the existing SQL ish tooling for go, is that genji needs a driver layer in order to use any of these tools. https://github.com/facebookincubator/ent-contrib
|
Ent is not an ORM btw. Its a code generator. Some devs like this and some dont. Its all comes down to having a working github.com/genjidb/genji/sql/driver. Then all the various golang ORM and code generators and migration tools can work with them. |
I wonder if its possible to use existing SQL DB tools with genji ?
https://github.com/kyleconroy/sqlc
Or https://gitea.com/xorm from gitea project ?
The text was updated successfully, but these errors were encountered: