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.
Recommended order
- Start with Identity Validator so authenticated requests are reliable first.
- Add Multi-Tenancy so tenant context is resolved before authorization.
- 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
Recommended next steps
- 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.