4 overrides of RoleNameStartsWithPredicate
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (3)
SqlStoreTestBase.cs (1)
88
protected override Expression<Func<TRole, bool>>
RoleNameStartsWithPredicate
(string roleName) => r => r.Name.StartsWith(roleName);
UserStoreTest.cs (1)
418
protected override Expression<Func<IdentityRole, bool>>
RoleNameStartsWithPredicate
(string roleName) => r => r.Name.StartsWith(roleName);
UserStoreWithGenericsTest.cs (1)
75
protected override Expression<Func<MyIdentityRole, bool>>
RoleNameStartsWithPredicate
(string roleName) => r => r.Name.StartsWith(roleName);
Microsoft.AspNetCore.Identity.InMemory.Test (1)
InMemoryStoreTest.cs (1)
58
protected override Expression<Func<PocoRole, bool>>
RoleNameStartsWithPredicate
(string roleName) => r => r.Name.StartsWith(roleName, StringComparison.Ordinal);
1 reference to RoleNameStartsWithPredicate
Microsoft.AspNetCore.Identity.Specification.Tests (1)
IdentitySpecificationTestBase.cs (1)
330
Expression<Func<TRole, bool>> func =
RoleNameStartsWithPredicate
("CanQueryableRolesTest");