ORMs and SQL
Some benefits of ORMs: They avoid string mangling when building dynamic queries. Some complex string concatenations are actually more easily expressed in an ORM than fragile string builders: def f(q, user=None, date=None, reverse=False): if user: ...
Jan 8, 20212 min read150