|
|
|
|
|
by rtpg
1179 days ago
|
|
Django's ORM is much better than most, to the point where Django considers that "I can't model this query with the ORM" to be a bug. There are of course some mismatches, but it's pretty hard to have a query that is not at all modelable, and Django's ORM is ... fairly predictable (I have some gripes about how obvious or not joins are but it's subjective). |
|
Quick obvious example - use views for data retrieval (that may contain more fields than the actual model) and tables for data insertion.