3 writes to ClaimValue
Microsoft.AspNetCore.Identity.EntityFrameworkCore (2)
UserOnlyStore.cs (1)
379
matchedClaim.
ClaimValue
= newClaim.Value;
UserStore.cs (1)
496
matchedClaim.
ClaimValue
= newClaim.Value;
Microsoft.Extensions.Identity.Stores (1)
IdentityUserClaim.cs (1)
51
ClaimValue
= claim.Value;
7 references to ClaimValue
Microsoft.AspNetCore.Identity.EntityFrameworkCore (6)
UserOnlyStore.cs (3)
376
var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.
ClaimValue
== claim.Value && uc.ClaimType == claim.Type).ToListAsync(cancellationToken);
398
var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.
ClaimValue
== claim.Value && uc.ClaimType == claim.Type).ToListAsync(cancellationToken);
517
where userclaims.
ClaimValue
== claim.Value
UserStore.cs (3)
493
var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.
ClaimValue
== claim.Value && uc.ClaimType == claim.Type).ToListAsync(cancellationToken);
515
var matchedClaims = await UserClaims.Where(uc => uc.UserId.Equals(user.Id) && uc.
ClaimValue
== claim.Value && uc.ClaimType == claim.Type).ToListAsync(cancellationToken);
634
where userclaims.
ClaimValue
== claim.Value
Microsoft.Extensions.Identity.Stores (1)
IdentityUserClaim.cs (1)
41
return new Claim(ClaimType!,
ClaimValue
!);