←back to thread

873 points belter | 2 comments | | HN request time: 0.439s | source
1. olavgg ◴[] No.42947719[source]
One thing that I have never been more sure about after 20 years as a software developer, is that Hibernate is awesome! Seriously, it saves me ton of time and tinkering. It has support for native queries, and it is simple to transform your custom query into JPA entities. Using Hibernate has never been easier with the introduction of LLM, tell it what it needs to do, and see beautiful Hibernate examples code.

In my Spring Boot applications I log every SQL that is generated, and quickly spot unoptimizations, like lazy loading of entities instead of using join.

How ORM's behave in other languages and frameworks, like Python, Go, Rust is probably another story.

replies(1): >>42947786 #
2. hu3 ◴[] No.42947786[source]
I'm curious, have you worked with Entity Framework with its legendary LINQ magic?