Ouch, I hate the high-speed, palm-forehead interface... esp. in public! LOL
Not sure why this didn't occur to me earlier, but I found a solution to what I am looking for (I'm still curious to know if there is an easier way, always like to go with the flow when possible). In short, the related classes are, well, short of the Manager class. Here's a cheesy example: class CustomNotes( models.Model ) value = models.TextField() modified = models.DateTimeField( auto_now = True ) ... # the generic-relation stuff content_object = generic.GenericForeignKey() content_type = models.ForeignKey( ContentType ) objects = models.Manager() class ClassNeedingNotes( models.Model ): index = models.IntegerField() ... # the generic-relation stuff notes = GenericRelation( CustomNotes ) I am fully aware that there are issues when trying to relate the acquired list of objects back to their original class. The connections mechanism is not the same, it's a GenericRelation after all. My problem was, I needed to globally process what in this example is the 'CustomNotes' class. There are a couple of other functional reasons I wanted to be able to have direct access to the tables, but I won't bore anyone here with it. So, hopefully someone else will either say, 'yup, that's how', 'great, what I needed' or, give me another reason to slap my forehead. S On Feb 22, 5:54 pm, Scott SA <pydev...@gmail.com> wrote: > Hopefully this won't be a forehead slapper of a question. > > Since related classes do not have an 'object' manager, what is the > best way to get all of those objects as a set? > > For example, if I have a BaseClass that has a generically-related > AttributeClass, I can get the attributes from an instance of BaseClass > i.e. base_instance.attributeclass_set.all(). > > But I'm looking for similar functionality to > AttributeClass.objects.all(), kind of reverse but without having to > have a BaseClass instance (which then limits the results). > > An easy way to visualize this is a contact with multiple phone > numbers. I'm looking to get a set of all phone numbers, regardless of > contact. Presently, I only see how to get those related to a > particular contact-object. > > Thanks! -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@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.