|
|
|
|
|
by murkt
87 days ago
|
|
Seeing a new library in 2026 that uses Django-style filter syntax is really surprising. With SQLAlchemy approach I can easily find all usages of a particular column everywhere. .filter(Folder.user_id == user_id)
Versus .filter(user_id=user_id)
Grepping by user_id will obviously produce hundreds and thousands of matches, probably from dozens of tables. |
|