You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updated links, clarified terminology, and improved formatting for better readability. Adjusted code and text references to align with standard conventions and enhance user understanding.
Copy file name to clipboardExpand all lines: src/content/docs/identityserver/ui/login/dynamicproviders.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ redirect_from:
10
10
---
11
11
12
12
Dynamic Identity Providers are a scalable solution for managing authentication with lots of external providers, without
13
-
incurring performance penalties or requiring application recompilation. This feature, included in the Enterprise Edition
13
+
incurring performance penalties or requiring application recompilation. This feature, included in the [Enterprise Edition](/general/licensing/#enterprise-edition)
14
14
of Duende IdentityServer, enables providers to be configured dynamically from a store at runtime.
15
15
16
16
## Dynamic Identity Providers
@@ -76,7 +76,7 @@ builder.Services
76
76
The identity provider store only provides an interface to query dynamic providers and does not provide any methods to add, update, or delete identity providers.
77
77
For custom store implementations, this means you'll need to implement a mechanism for populating the store with identity providers.
78
78
79
-
If you're using the Entity Provider Core stored from the `Duende.IdentityServer.EntityFramework.Storage` NuGet package,
79
+
If you're using the Entity Framework Core identity provider store from the `Duende.IdentityServer.EntityFramework.Storage` NuGet package,
80
80
you can use the `ConfigurationDbContext` database context directly to add, update or remove dynamic identity providers:
81
81
82
82
```csharp title="SeedData.cs"
@@ -183,12 +183,12 @@ There are three paths that are set on the `OpenIdConnectOptions`:
0 commit comments