I think this might me very common query that I am not able to solve it in Django ORM.
Requirement:
entries = Person.objects.filter(confId=confId, participant=str(address)).order_by('-sms')[:1]
smsCount = entries[0].sms + 1
entries.update(sms=smsCount)
Steps:
- Filtering all the records form table where two columns entries are same
- Ordering in Descending by
smscolumn which is integer value ( This maintains count basically) - Slicing and Updating the first entry to reflect count
I know django “Cannot filter a query once a slice has been taken” Error. But I am reading different post but no one answer this correctly.
Is there any other way round to achieve the same thing ??? I dont want to increment when I create the entry as it will break my logic...