---
title: ASP.NET Core Integration
---

The Arc provides enhanced capabilities for ASP.NET Core applications, building upon the core Arc features with web-specific functionality. This integration offers powerful tools for API development including advanced model binding, validation, authorization, and automatic API documentation.

## Features

- **[Configuration](/arc/backend/asp-net-core/configuration/)** - Configure Arc through appsettings.json or programmatically
- **[Authorization](/arc/backend/asp-net-core/authorization/)** - Enhanced authorization with role-based access and policy support
- **[Microsoft Identity](/arc/backend/asp-net-core/microsoft-identity/)** - Integration with Microsoft Client Principal for Azure services
- **[FromRequest Attribute](/arc/backend/asp-net-core/from-request/)** - Advanced model binding combining multiple HTTP request sources
- **[Swagger](/arc/backend/asp-net-core/swagger/)** - Enhanced OpenAPI documentation with Arc-specific schema generation
- **[Validation](/arc/backend/asp-net-core/validation/)** - Comprehensive validation with FluentValidation support
- **[Without Wrappers](/arc/backend/asp-net-core/without-wrappers/)** - Control response wrapping behavior for specific endpoints
- **[Invariant Culture](/arc/backend/asp-net-core/invariant-culture/)** - Guarantee consistent culture-sensitive behavior across all environments

## When to Use ASP.NET Core Integration

Use the ASP.NET Core integration when you need:

- Full web framework capabilities (Kestrel, middleware pipeline, static files)
- Razor views or MVC features
- Swagger UI for API documentation
- Advanced middleware scenarios
- Maximum HTTP throughput with Kestrel
- Traditional web application patterns

## When to Use Arc.Core Instead

Consider using [Arc.Core](/arc/backend/core/overview/) (without ASP.NET Core) when you need:

- Minimal dependencies and smaller binary size
- Faster startup times
- Lower memory footprint
- Native AOT compilation support
- Console applications or background services
- Scenarios where full web framework is unnecessary

## See Also

- [Arc.Core Overview](/arc/backend/core/overview/) - Lightweight alternative without ASP.NET Core
- [Commands](/arc/backend/commands/) - Command handling patterns
- [Queries](/arc/backend/queries/) - Query patterns and conventions
- [Tenancy](/arc/backend/tenancy/overview/) - Tenant isolation and management
