C#C
C#3y ago
1 reply
Kosta

❔ Azure Blob storage and multi tenancy, how to get a list of blobs with a specific key?

I've got an application based on the abp framework that gets a sentence from a user and is returning an audio file, I want to save that with a string like UserId-SessonID-CreationTime on the blob storage in azure, problem is i only have a method to get 1 blob, like GetBlob(key)
I cannot get a list, no such method exsist.

What basically im asking is how do i structure it? maybe blob storage aint the way?
Perhaps another sql server that contains the key and the userID associated with it, and then query the blob storage in a foreach?

The application is configured to use multi tenancy if it helps at all,
The document i've been reading:
https://docs.abp.io/en/abp/latest/Blob-Storing
It is typical to store file contents in an application and read these file contents on need. Not only files, but you may also need to save various types of large binary objects, a.k.a. BLOBs, into a s
Was this page helpful?