6 references to GuidRole
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (6)
UserStoreGuidKeyTest.cs (6)
27public class UserStoreGuidTest : SqlStoreTestBase<GuidUser, GuidRole, Guid> 34public class ApplicationUserStore : UserStore<GuidUser, GuidRole, TestDbContext, Guid> 39public class ApplicationRoleStore : RoleStore<GuidRole, TestDbContext, Guid> 51services.AddSingleton<IRoleStore<GuidRole>>(new ApplicationRoleStore((TestDbContext)context)); 61var builder = services.AddIdentity<GuidUser, GuidRole>().AddEntityFrameworkStores<TestDbContext>(); 67Assert.NotNull(sp.GetRequiredService<RoleManager<GuidRole>>());