3 instantiations of UserStore
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (3)
UserStoreTest.cs (3)
66
var store = new
UserStore
(new IdentityDbContext(new DbContextOptionsBuilder<IdentityDbContext>().Options));
99
Assert.Throws<ArgumentNullException>("context", () => new
UserStore
(null));
100
var store = new
UserStore
(new IdentityDbContext(new DbContextOptionsBuilder<IdentityDbContext>().Options));
3 references to UserStore
Microsoft.AspNetCore.Identity.EntityFrameworkCore (1)
UserStore.cs (1)
19
/// Constructs a new instance of <see cref="
UserStore
"/>.
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (2)
UserStoreTest.cs (2)
66
var
store = new UserStore(new IdentityDbContext(new DbContextOptionsBuilder<IdentityDbContext>().Options));
100
var
store = new UserStore(new IdentityDbContext(new DbContextOptionsBuilder<IdentityDbContext>().Options));