5 types derived from IdentityDbContext
IdentitySample.ApiEndpoints (1)
Program.cs (1)
32public class ApplicationDbContext : IdentityDbContext<IdentityUser>
IdentitySample.Mvc (1)
Models\ApplicationDbContext.cs (1)
9public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (3)
UserStoreEncryptPersonalDataTest.cs (2)
249private class ProtectedIdentityDbContext : IdentityDbContext<CustomUser> 257private class UnprotectedIdentityDbContext : IdentityDbContext<CustomUser>
UserStoreTest.cs (1)
22public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
1 instantiation of IdentityDbContext
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (1)
UserStoreEncryptPersonalDataTest.cs (1)
289var dbContext = new IdentityDbContext<InvalidUser>(dbOptions);
2 references to IdentityDbContext
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (2)
UserStoreEncryptPersonalDataTest.cs (2)
284.AddEntityFrameworkStores<IdentityDbContext<CustomUser>>() 289var dbContext = new IdentityDbContext<InvalidUser>(dbOptions);