I wish writing SQL queries was more popular than ORMs
Von_Broheim @ Von_Broheim @programming.dev Posts 0Comments 24Joined 2 yr. ago
Von_Broheim @ Von_Broheim @programming.dev
Posts
0
Comments
24
Joined
2 yr. ago
Yeah, that's great, until you need to conditionally compose a query. Suddenly your pre baked queries are not enough. So you either:
You write like it's ORM vs native. ORMs let you write native queries and execute them while also doing all the tedious work for you such as:
So if you love native queries write native queries in an ORM which will do all the tedious shit for you.