You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An exception of type 'System.Data.SqlClient.SqlException' occurred in System.Private.CoreLib.ni.dll but was not handled in user code
Additional information: Invalid object name 'OpenIddictApplications'.
Looks like you're missing 'await' in your Startup.cs
Should be:
public async void Configure(IApplicationBuilder app, IDatabaseInitializer databaseInitializer)
and
await databaseInitializer.Seed();
The text was updated successfully, but these errors were encountered: