Skip to main content
Version: Current

Combined .NET Integration

Use this page when one module is not enough and you need the recommended composition order for a single ASP.NET Core host.

  1. Start with Identity Validator so authenticated requests are reliable first.
  2. Add Multi-Tenancy so tenant context is resolved before authorization.
  3. Add RBAC so access decisions can use the authenticated principal and resolved tenant.

Use this combined path when

  • you need authenticated tenant-scoped authorization
  • you want one host that resolves tenant context before RBAC checks
  • you want the shortest route to a coherent production-style architecture
  • For a minimal auth-first start: use the Identity Validator local JWT path.
  • For tenant resolution before RBAC: continue with the Multi-Tenancy integration guide.
  • For authenticated authorization proof: use Verified Production-Style Role Matrix.

Scope note

This page is the cross-module entry point. Module-specific verified flows still live in their own sections so the user can choose the smallest path that matches the job.