diff --git a/README.md b/README.md index 4dd1044a..5acfc4e2 100644 --- a/README.md +++ b/README.md @@ -148,11 +148,11 @@ 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 `AddOpenIddict()`/`AddEntityFrameworkCoreStores()` overloads 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 `services.AddOpenIddict()`/`builder.UseOpenIddict()` overloads accepting a `TKey` generic argument: ```csharp services.AddOpenIddict() - .AddEntityFrameworkCoreStores() + .AddEntityFrameworkCoreStores() ``` ```csharp