Hi @lm1212 ,
It is impossible to convert empty string/null value to int type by using int.Parse(claim. Value) which is the reason why you get such error.
You need change your code like below:
return (claim != null & !string.IsNullOrEmpty(claim?.Value)) ? int.Parse(claim.Value) : null;
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best Regards,
Rena