3 writes to ClaimValue
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)
51
ClaimValue
= other?.Value;
RoleStoreBase.cs (1)
247
=> new TRoleClaim { RoleId = role.Id, ClaimType = claim.Type,
ClaimValue
= claim.Value };
3 references to ClaimValue
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
RoleStore.cs (2)
341
return await RoleClaims.Where(rc => rc.RoleId.Equals(role.Id)).Select(c => new Claim(c.ClaimType!, c.
ClaimValue
!)).ToListAsync(cancellationToken);
373
var 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)
41
return new Claim(ClaimType!,
ClaimValue
!);