In Azure App Configuration you can store a key with multiple values, differentiated by labels.
When building the config it is possible to filter which keys to read from the store by using labelFilter="SomeLabel"
In my case i have 50 keys in the app store without any label (No Label), and 4 keys which has two values, one value for label SomeLabel and another value for (No Label).
I want to retrieve all 54 keys. For the 4 keys which have multiple values, i want the value with label SomeLabel.
If i use labelFilter="SomeLabel" i only get the 4 keys with the label, the 50 keys without any label are filtered out.
Is it possible to achieve my desired functionality?
<configBuilders>
<builders>
<add name="SomeAzureAppConfigStore" labelFilter="SomeLabel" mode="Greedy" prefix="My.App:" stripPrefix="true" connectionString="${MyConnectionString}" useAzureKeyVault="true" type="Microsoft.Configuration.ConfigurationBuilders.AzureAppConfigurationBuilder, Microsoft.Configuration.ConfigurationBuilders.AzureAppConfiguration, Version=1.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxx" />
</builders>
</configBuilders>