-
-
Notifications
You must be signed in to change notification settings - Fork 572
Closed

Description
Hi there,
I am just trying to update Openiddict to the latest version [-beta2-0556 at this point].
Now the following error occurs when first trying to access the database:
System.TypeLoadException: 'Die Methode "ApplyServices" im Typ "OpenIddict.EntityFrameworkCore.OpenIddictExtension`5" der Assembly "OpenIddict.EntityFrameworkCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" hat keine Implementierung.' [ = "The method ... has no Implementation"]
thrown by the "UseOpenIddict() part here:
services.AddDbContext<DataAccess.ApoNextDbContext>(options =>
{
options.UseSqlServer(Configuration["Data:ApoNextDb"]);
options.UseOpenIddict();
});
I am surely missing something.. but what ? Could it be using asp.net core / ef core preview 1.2.0.-preview1-23456 ?