What's the best practice for filtering based on a foreign key's property in a non-relational database? I understand that the lack of join support makes things more complicated, and so I was wondering how others got around it.
In my case, I have events, which belong to sites, which belong to regions. I want to filter all events in a given region. An Event has a site property that is a foreign key to a Site, which in turn has a region foreign key to a Region:
region = Region.objects.get(id=regionID)
events = Event.objects.filter(site__region=region)
This doesn't work, because site__region requires a join and that's not supported on django-nonrel running on Google App Engine. (I get Caught DatabaseError while rendering: This query is not supported by the database. as an error.) I've thus been iterating through events, adding those that match to a list:
events = list()
region = Region.objects.get(id=regionID)
for event in Event.object.all():
if event.site.region==region:
events.append(event)
Is this a good way to be doing things? Is there something silly that I've overlooked? Thanks in advance!