5 references to GuidUser
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (5)
UserStoreGuidKeyTest.cs (5)
27public class UserStoreGuidTest : SqlStoreTestBase<GuidUser, GuidRole, Guid> 34public class ApplicationUserStore : UserStore<GuidUser, GuidRole, TestDbContext, Guid> 46services.AddSingleton<IUserStore<GuidUser>>(new ApplicationUserStore((TestDbContext)context)); 61var builder = services.AddIdentity<GuidUser, GuidRole>().AddEntityFrameworkStores<TestDbContext>(); 66Assert.NotNull(sp.GetRequiredService<UserManager<GuidUser>>());