Created
August 12, 2019 06:09
-
-
Save xsoheilalizadeh/94477ce8c22582bc0a31fb2cbc135415 to your computer and use it in GitHub Desktop.
ASP.NET Core Identity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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