Re: how a field and its value can be found in a queryset object

2012-07-24 Thread Karen Tracey
Please ask questions about using Django on django-users. The topic of this list is the development of Django itself. Karen -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.

how a field and its value can be found in a queryset object

2012-07-24 Thread wuuuuu
Hi, first, I have such an example: 1. users = Some.objects.filter(user="someone") 2. users.update(price=100) based on different user (I have a table to save it), users go to the different databases, and due to Master/Slave seperated, update and filter should be in different places