3 writes to ClaimType
Microsoft.AspNetCore.Identity.EntityFrameworkCore (1)
RoleStore.cs (1)
394=> new TRoleClaim { RoleId = role.Id, ClaimType = claim.Type, ClaimValue = claim.Value };
Microsoft.Extensions.Identity.Stores (2)
IdentityRoleClaim.cs (1)
50ClaimType = other?.Type;
RoleStoreBase.cs (1)
247=> new TRoleClaim { RoleId = role.Id, ClaimType = claim.Type, ClaimValue = claim.Value };
3 references to ClaimType
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
RoleStore.cs (2)
341return await RoleClaims.Where(rc => rc.RoleId.Equals(role.Id)).Select(c => new Claim(c.ClaimType!, c.ClaimValue!)).ToListAsync(cancellationToken); 373var claims = await RoleClaims.Where(rc => rc.RoleId.Equals(role.Id) && rc.ClaimValue == claim.Value && rc.ClaimType == claim.Type).ToListAsync(cancellationToken);
Microsoft.Extensions.Identity.Stores (1)
IdentityRoleClaim.cs (1)
41return new Claim(ClaimType!, ClaimValue!);