Skip to content

Instantly share code, notes, and snippets.

@xsoheilalizadeh
Created August 12, 2019 06:09
Show Gist options
  • Select an option

  • Save xsoheilalizadeh/94477ce8c22582bc0a31fb2cbc135415 to your computer and use it in GitHub Desktop.

Select an option

Save xsoheilalizadeh/94477ce8c22582bc0a31fb2cbc135415 to your computer and use it in GitHub Desktop.
ASP.NET Core Identity
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc();
services.AddIdentity<IdentityUser<int>, IdentityRole<int>>()
.AddUserStore<CustomUserStore>();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment