Is there a way to use metadata on an Azure storage container as a filter in Azure Cognitive Search?
I'm aware that metadata on individual blobs in an Azure storage container can be used as search filters.
User-specified metadata properties present on the blob, if any, are extracted verbatim. Note that this requires a field to be defined in the index with the same name as the metadata key of the blob. For example, if your blob has a metadata key of Sensitivity with value High, you should define a field named Sensitivity in your search index and it will be populated with the value High.
Is there a way to filter searches based on metadata at the container level instead of the blob level? If not, are there other ways to filter searches by storage container?