vivek chaturvedi

vivek chaturvedi

  • NA
  • 371
  • 2.4k

Identity In ASP.NET Core 2.0 using ado.net

Nov 25 2019 4:26 AM
Hi ,
 
Is there any way to use ado.net in configuration of identity in asp.net core. We are looking not to use EF in this process, I have research in found EF is the default package but we are not looking to use this. Can you please help me to solve this issue
 
services.AddIdentity<ApplicationUser, IdentityRole>()
.AddEntityFrameworkStores<ApplicationDbContext>()
.AddDefaultTokenProviders();
 
I have tried to study this link : https://docs.microsoft.com/en-us/aspnet/core/security/authentication/identity-custom-storage-providers?view=aspnetcore-3.0#reconfigure-app-to-use-a-new-storage-provider
 
but not sure to how to create ado.net

Answers (1)