warsztatywww / aplikacjawww

Web application for scientific summer school
https://warsztatywww.pl
GNU Affero General Public License v3.0
5 stars 6 forks source link

Refactor some model properties to managers #622

Closed krzys-h closed 2 years ago

krzys-h commented 2 years ago

Properties such as Workshop.solution_count are an easy way to introduce N+1 errors in the ORM. Instead, we should remove the property and define a custom ObjectManager with a method with_counts that adds the required data at the query level.