Possible Duplicate:
How to model many blobs for an object?
I have a datastore model called Location and I would like users to be able to upload a multitude of images relating to that location. I know that I can reference those images from the Blobstore using the BlobReferenceProperty but how can I reference a lot of these properties without creating many more attributes?
Can I create a list of them or make a list property of BlobReferenceProperties?
As with any basic datastore supported type, you can use a
ListPropertyofBlobKey.Please note: