ASP.NET Core / Blazor: How to implement Permissions based (non-Policy) Authorization
Using Blazor WASM, I want to implement a dynamic permissions based authorization system that isn’t definable at build time. The current “Policy based” authorization built-in system requires that policies are defined at build time and this doesn’t work for me as all of my permissions are assigned via my own permissions system that is database based.
ASP.NET Core Blazor multiple authentication schemes (OIDC + custom cookies)
I’m trying to implement a secondary cookie authentication scheme for an ASP.NET Core Blazor Web App (net8.) based on the official BlazorWebAppOidc sample.