I\'m trying to customise ASP.NET Identity 3 so that it uses integer keys:
public class ApplicationUserLogin : IdentityUserLogin { } public class Ap
Ran into this problem. It was crashing on the startup.cs file. changed
services.AddIdentity() .AddEntityFrameworkStores() .AddDefaultTokenProviders();
to
declaring the key type seemed to get past the crash