Update the migration guide to clarify the listed versions

This commit is contained in:
Kévin Chalet
2021-01-13 06:29:13 +01:00
parent adb445dcde
commit 0cdf933ab2
2 changed files with 50 additions and 19 deletions

View File

@@ -118,7 +118,7 @@ If you don't want to start from one of the recommended samples, you'll need to:
```
> [!WARNING]
> Important: if you change the default entity primary key (e.g. to `int` or `Guid` instead of `string`), make sure you use the `options.ReplaceDefaultEntities<TKey>()`
> If you change the default entity primary key (e.g. to `int` or `Guid` instead of `string`), make sure you use the `options.ReplaceDefaultEntities<TKey>()`
> core extension accepting a `TKey` generic argument and use the generic `options.UseOpenIddict<TKey>()` overload to configure EF Core to use the specified type:
>
> ```csharp