here is a brief description of my app: VS2019 Blazor App, Individual User Authentication, netcore hosted.
What the goal is: Role based Authorization with HIDDEN links for non authorized users.
After reading up on Role based authorization I ended up with changing my Service as follows:

I Seeded my db with an admin user and 2 roles like so:

Everthing worked great. My trouble started when I tried to hide non-admin links in the 'NavMenu.razor' page using AuthorizeView Roles="admin":

After that change my application just closes down throwing the following exceptions:

I really do not know where to look. 'AuthorizeView' works, but 'AuthorizeView Roles="admin"' throws the system for a loop.
It may have something to do with the way claims deal with roles, but I need someone experienced to help me sort this out or suggest another way to achieve the goal.
Thanks!
PS: Sorry about all the pics, I was having problems formatting the Error Logs and the html, so I just pasted images.