diff --git a/IdentityServer/v6/docs/content/quickstarts/4_ef.md b/IdentityServer/v6/docs/content/quickstarts/4_ef.md index 0cf69be1..2c83d34a 100644 --- a/IdentityServer/v6/docs/content/quickstarts/4_ef.md +++ b/IdentityServer/v6/docs/content/quickstarts/4_ef.md @@ -40,10 +40,13 @@ with the EntityFramework integration already added: *dotnet new isef*. ## Configure IdentityServer ### Install Duende.IdentityServer.EntityFramework IdentityServer's Entity Framework integration is provided by the -*Duende.IdentityServer.EntityFramework* NuGet package. Run the following command -from the *src/IdentityServer* directory to install it: +*Duende.IdentityServer.EntityFramework* NuGet package. Run the following +commands from the *src/IdentityServer* directory to replace the +*Duende.IdentityServer* package with it. Replacing packages prevents any +dependency issues with version mismatches. ```console +dotnet remove package Duende.IdentityServer dotnet add package Duende.IdentityServer.EntityFramework ```