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