вт 23 октября 2018,
So, Django has "manager" for the queries https://docs.djangoproject.com/en/1.4/topics/db/managers/#django.db.models.Manager, that is good for creating DSL.
For example, if you want get all users from database for chosen date, you can write some query:
User.objects.filter(birth_date > (date …read more
There are comments.