[google-appengine] Re: list of referenceProperty?

2009-02-19 Thread Pratik Rokade
ooh, nice workaround! On Tue, Feb 17, 2009 at 11:12 PM, Marzia Niccolai wrote: > Hi, > > You can have a list of key objects, and you can just use db.get(Key) to > retrieve any entry in the list. > > -Marzia > > > On Sun, Feb 15, 2009 at 9:27 PM, Pratik C. Rokade < > evolution.g...@gmail.com> wro

[google-appengine] Re: list of referenceProperty?

2009-02-17 Thread Brandon Thomson
List of referenceProperty's in the datastore does not seem to work. I got around this for my app by using a list of "db.Key"s. Then instead of using a query I just fetch all the keys. I think I have seen some other workarounds so maybe someone else can chime in with a way to filter the keys or run

[google-appengine] Re: list of referenceProperty?

2009-02-17 Thread Marzia Niccolai
Hi, You can have a list of key objects, and you can just use db.get(Key) to retrieve any entry in the list. -Marzia On Sun, Feb 15, 2009 at 9:27 PM, Pratik C. Rokade wrote: > > Hello guys, > can I have list of referenceProperty? How can I fire queries on such > property? > > Regards, > Pratik.