karthik-sal
Results
1
comments of
karthik-sal
Not sure if you've solved your problem, but if you haven't, you can try the following in your ClaimsTransformation: ``` var identity = (ClaimsIdentity)principal.Identity; identity.AddClaim(new Claim(identity.RoleClaimType, "Admin")) ``` Using `ClaimTypes.Role`,...