On Thu, 2009-03-26 at 17:02 -0700, dj wrote: > Hello All, > > I would like to know if there is a way to exclude fields from an > object query. > > For example: > > Suppose I have this model. > > class Person(Model.model): > name = Charfield() > address = Charfield() > state = Charfield() > etc.... I do realize my syntax is probably wrong, please for > give me. > > I want to create a query that will return the state attribute for each > object in the model. > I found a reference to a method called hide in the django > documentation.
No you didn't. You saw it in the initial proposal for a ticket (#5420), but that isn't what was eventually committed. You have to read down to the end of the ticket to see what made it into the code. The documentation only talks about defer() and only(). That feature is in django 1.1-beta-1, but nothing earlier, so you would have to be using the latest code. However, ask yourself if you really need this. The answer is almost certainly "no". If you only want particular values from a model, use the values() method on a queryset and you'll get back only those values. Alternatively, just get the whole model back. The use-cases for needing to defer the loading of particular fields is very, very small. Names, addresses and so forth are not going to be in that use-case. Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---