Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

  1. Filtering all the records form table where two columns entries are same
  2. Ordering in Descending by sms column which is integer value ( This maintains count basically)
  3. 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...

share|improve this question
Got the solution by filtering/ordering/decending and then getting primary key for that record. Step 2: Make use of primary key to filter that record, it would be just one and then perform update of that field – Anuj Acharya Jan 18 at 2:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.