From b4814eb96993934191bb0ed7c0b00cb8f5d09002 Mon Sep 17 00:00:00 2001 From: Triwaters <31010638+Triwaters@users.noreply.github.com> Date: Sat, 4 Nov 2017 12:10:53 -0500 Subject: [PATCH] Patch 2 (#1702) * Update community.rst * Update community.rst * Configure to ConfigureServices pretty sure the method call is incorrectly named as it stands --- docs/quickstarts/8_entity_framework.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstarts/8_entity_framework.rst b/docs/quickstarts/8_entity_framework.rst index 8c48cc7785..43fae18cc0 100644 --- a/docs/quickstarts/8_entity_framework.rst +++ b/docs/quickstarts/8_entity_framework.rst @@ -60,7 +60,7 @@ It should look like this: Configuring the stores ^^^^^^^^^^^^^^^^^^^^^^ -The next step is to replace the current calls to ``AddInMemoryClients``, ``AddInMemoryIdentityResources``, and ``AddInMemoryApiResources`` in the ``Configure`` method in `Startup.cs`. +The next step is to replace the current calls to ``AddInMemoryClients``, ``AddInMemoryIdentityResources``, and ``AddInMemoryApiResources`` in the ``ConfigureServices`` method in `Startup.cs`. We will replace them with this code:: const string connectionString = @"Data Source=(LocalDb)\MSSQLLocalDB;database=IdentityServer4.Quickstart.EntityFramework-2.0.0;trusted_connection=yes;";