Skip to content

Commit 879587d

Browse files
authored
Merge pull request #100335 from abhilasharora/abarora/update-use-to-select
Update docs to replace Use() with Select()
2 parents 45ccd4b + 2cf4aa2 commit 879587d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-app-configuration/howto-best-practices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ In your code, you first retrieve the key values without any labels, and then you
4747
// Pull the connection string from an environment variable
4848
configBuilder.AddAzureAppConfiguration(options => {
4949
options.Connect(configuration["connection_string"])
50-
.Use(KeyFilter.Any, LabelFilter.Null)
51-
.Use(KeyFilter.Any, "Development");
50+
.Select(KeyFilter.Any, LabelFilter.Null)
51+
.Select(KeyFilter.Any, "Development");
5252
});
5353
```
5454

0 commit comments

Comments
 (0)