From c4083b16ef6a36374b1f0178e6dd15236c028a0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Tue, 13 Dec 2016 13:55:07 +0100 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0007343c..4dd1044a 100644 --- a/README.md +++ b/README.md @@ -148,10 +148,10 @@ public class ApplicationDbContext : IdentityDbContext { } ``` -> **Note:** if you change the default entity primary key (e.g. to `int` or `Guid` instead of `string`), make sure to use the `AddEntityFrameworkCoreStores` overload accepting a `TKey` generic argument and use the generic `builder.UseOpenIddict()` overload: +> **Note:** if you change the default entity primary key (e.g. to `int` or `Guid` instead of `string`), make sure to use the `AddOpenIddict()`/`AddEntityFrameworkCoreStores()` overloads accepting a `TKey` generic argument and use the generic `builder.UseOpenIddict()` overload: ```csharp -services.AddOpenIddict() +services.AddOpenIddict() .AddEntityFrameworkCoreStores() ```