Skip to content

Commit 2cf4aa2

Browse files
author
Abhilash Arora
committed
Update docs to replace Use() with Select()
1 parent 765def3 commit 2cf4aa2

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)