General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
ThePrimeTime
comments
Comments by "" (@adambickford8720) on "DONT USE AN ORM | Prime Reacts" video.
Feels extra good when the DBA supplies you with a more performant query and it takes a week of hibernate spelunking to figure out how to generate it.
3
The 600 column thing isn't that crazy. I've seen it where a `User` had a couple dozen properties, some of which were collections of other entities that also had collections of entities. So now you are either over-fetching a whole lot, N+1ing, or you're having to manage a 'fetch' strategy to tell the ORM which subgraph to populate. You know, like a sql projection but w/all kinds of vestigial null properties that are semantically ambigous.
1