3 instantiations of UserStore
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (3)
UserStoreTest.cs (3)
66var store = new UserStore(new IdentityDbContext(new DbContextOptionsBuilder<IdentityDbContext>().Options)); 99Assert.Throws<ArgumentNullException>("context", () => new UserStore(null)); 100var 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)
66var store = new UserStore(new IdentityDbContext(new DbContextOptionsBuilder<IdentityDbContext>().Options)); 100var store = new UserStore(new IdentityDbContext(new DbContextOptionsBuilder<IdentityDbContext>().Options));