Technical Blog

Blog: .NET 10, Blazor & VSA

Production-proven patterns for building enterprise .NET applications. Deep dives, case studies, and practical guides.

VSAMVCAugust 2026 · 9 min read

ASP.NET Core MVC Vertical Slice Architecture: Complete Implementation Guide

Implement Vertical Slice Architecture in ASP.NET Core MVC: feature folders, controllers, CQRS handlers, per-feature endpoints, and Razor views in one slice. Complete .NET 10 guide.

IdentityMVCAugust 2026 · 11 min read

ASP.NET Core Identity Complete Guide: Registration, Login, Roles, and Claims

Everything you need to implement ASP.NET Core Identity in .NET 10 MVC: AddIdentity, EF Core stores, registration, login, roles, claims, two-factor authentication, and lockout.

IdentityJWTMVCAugust 2026 · 9 min read

ASP.NET Core Identity with JWT in MVC: Access Tokens and Refresh Rotation

Combine ASP.NET Core Identity with JWT in MVC: generate signed access tokens, validate them with AddJwtBearer, and rotate refresh tokens server-side in .NET 10.

SecurityMVCRBACAugust 2026 · 8 min read

Role-Based Authorization in ASP.NET Core MVC: Roles, Policies, and Claims

Implement role-based authorization in ASP.NET Core MVC: seed roles, assign users, protect controllers with [Authorize(Roles)], and layer on claims-based policies.

FirebaseGoogleMVCAugust 2026 · 8 min read

Firebase SSO with Google Sign-In in ASP.NET Core MVC: One-Click Authentication

Add one-click Google sign-in to ASP.NET Core MVC with Firebase SSO: client popup, server-side token verification, and auto-provisioned Identity users.

CQRSMVCAugust 2026 · 8 min read

CQRS in ASP.NET Core MVC Without MediatR: Direct Handlers and Endpoints

Implement CQRS in ASP.NET Core MVC with plain handler classes — no MediatR. Commands and queries wired directly into controllers and per-feature endpoints.

IdentityEmailMVCAugust 2026 · 8 min read

Email Confirmation and Password Reset with ASP.NET Core Identity

Build the complete email confirmation and password reset flow with ASP.NET Core Identity: single-use tokens, SendGrid/SMTP delivery, and secure callbacks.

JobsMVCHangfireAugust 2026 · 8 min read

Background Jobs in ASP.NET Core MVC with Hangfire: Recurring and Fire-and-Forget

Add reliable background jobs to ASP.NET Core MVC with Hangfire: fire-and-forget, delayed, recurring cron jobs, and the built-in /hangfire dashboard.

SecurityProductionMVCAugust 2026 · 8 min read

ASP.NET Core Identity Best Practices: Secure Authentication Done Right

The production ASP.NET Core Identity checklist: password policy, account lockout, 2FA, email confirmation, secret handling, and least-privilege roles.

VSAMVCAugust 2026 · 8 min read

ASP.NET Core MVC VSA Folder Structure: One Folder per Feature in Practice

The practical MVC VSA folder structure: Controllers, Cqrs handlers, Endpoints, and Views inside one feature folder, with a real Currency slice in .NET 10.

.NET 10August 2026 · 6 min read

ASP.NET Core 10 Features: The Best Hidden Gems in the Framework

ASP.NET Core 10 Features: the best hidden gems in the framework — hybrid cache, request timeouts, and small APIs that quietly save real development time.

AuditEnterpriseAugust 2026 · 6 min read

Audit Trail Implementation: Compliance-Ready Logging for Enterprise .NET

Audit Trail Implementation for compliance: immutable append-only logs, GDPR and SOX-ready .NET design, user identity capture, and audit retention policies.

SaaSAugust 2026 · 7 min read

Multi-Tenant SaaS .NET: From Single-Tenant Codebase to SaaS-Ready

Multi-Tenant SaaS .NET migration from a single-tenant codebase: add a tenant column, EF Core query filters, tenant resolution, and rework existing queries.

ASP.NET CoreEnterpriseAugust 2026 · 8 min read

ASP.NET Core 10 Features: Real-World Impact on Enterprise Apps

ASP.NET Core 10 Features: how the latest framework improvements impact real enterprise apps — DI, resilience, observability, and Blazor Server in production.

AuditEF CoreAugust 2026 · 6 min read

Audit Trail Implementation with EF Core: Interceptors That Do the Work

Audit Trail Implementation with EF Core: use SaveChangesInterceptor and ChangeTracker to log changes automatically. C# examples for before and after values.

SaaSVSAAugust 2026 · 7 min read

Multi-Tenant SaaS .NET: Building It with Blazor Server and VSA

Multi-Tenant SaaS .NET with Blazor Server and Vertical Slice Architecture: tenant-aware scoped services, EF Core query filters, and feature slices in practice.

SwaggerBlazor ServerAugust 2026 · 6 min read

REST API with Swagger in a Blazor Server Enterprise App

REST API with Swagger in a Blazor Server enterprise app: consume the same documented API from server-side Blazor with typed HTTP clients and JWT auth.

ASP.NET CoreAugust 2026 · 8 min read

ASP.NET Core 10 Features: Minimal APIs and Performance Improvements

ASP.NET Core 10 Features: Minimal APIs and performance improvements explained — typed results, endpoint filters, tiered compilation, native AOT, and more.

AuditAugust 2026 · 6 min read

Audit Trail Implementation: Logging Every Change in Your .NET App

Audit Trail Implementation in .NET: capture who changed what, before and after values, timestamps, and user identity with concrete C# code from a real app.

FreelanceAugust 2026 · 6 min read

Building a .NET Freelance Business: The Tools That Scale Your Agency

Freelance .NET Developer Tools for scaling a solo practice into an agency: project management, invoicing, time tracking, and delivery automation at scale.

SaaSIdentityAugust 2026 · 7 min read

Multi-Tenant SaaS .NET: Authentication, Claims, and Tenant Resolution

Multi-Tenant SaaS .NET: authentication with JWT tenant claims, tenant-aware Scoped services, and tenant resolution from subdomains and tokens in .NET 10.

SwaggerEF CoreAugust 2026 · 6 min read

Building a REST API with Swagger and EF Core 10: End-to-End Tutorial

REST API with Swagger and EF Core 10: build a full CRUD API with entities, DbContext, minimal API endpoints, migrations, and Swagger docs in one tutorial.

.NET 10August 2026 · 7 min read

ASP.NET Core 10 Features: Everything New in the Latest Release

ASP.NET Core 10 Features: everything new in the latest release — runtime, Minimal APIs, DI, middleware, and Blazor Server improvements. Complete guide.

FreelanceAugust 2026 · 7 min read

Freelance .NET Developer Tools: From Hello World to Client-Ready in Days

Freelance .NET Developer Tools turn a blank folder into a client-ready demo in days: scaffold, wire auth and CRUD, then deploy with automated workflows.

SaaSAugust 2026 · 7 min read

Multi-Tenant SaaS .NET: Shared Database vs Database per Tenant

Multi-Tenant SaaS .NET: compare shared database, schema-per-tenant, and database-per-tenant isolation, plus cost, migrations, and EF Core filter implementation.

SwaggerSecurityAugust 2026 · 6 min read

REST API with Swagger: Authentication, Versioning, and Best Practices

REST API with Swagger authentication and versioning: add JWT bearer security, Swagger UI Authorize, versioning, and production best practices for .NET 10.

MonolithProductionAugust 2026 · 6 min read

Single-Project Monolith Deployment: One App, One Server, Zero Microservices Pain

Single-Project Monolith Deployment: one app, one server, zero microservices pain — deploy a .NET 10 monolith with a single container and simple CI/CD.

FreelanceBlazor ServerAugust 2026 · 6 min read

How Freelance .NET Developers Ship Blazor Projects Faster

Freelance .NET Developer Tools that let you ship Blazor Server projects faster from day one: MudBlazor admin UIs, reusable slices, and one-command deployment.

SaaSAugust 2026 · 7 min read

Multi-Tenant SaaS .NET: The Complete Architecture Guide

Multi-Tenant SaaS .NET: tenant isolation, tenant resolution, shared vs per-tenant databases, EF Core query filters, and tenant-aware DI in ASP.NET Core 10.

SwaggerAugust 2026 · 6 min read

REST API with Swagger: Design First vs Code First

REST API with Swagger: compare design-first OpenAPI contracts with code-first Swashbuckle generation, and choose the right approach for your .NET 10 team.

MonolithAugust 2026 · 6 min read

Single-Project Monolith: Keeping a Large Codebase Maintainable

Single-Project Monolith: Keeping a Large Codebase Maintainable — boundaries, namespaces, and tests that keep one .NET project healthy at 50k+ lines for years.

EF CoreBlazor ServerAugust 2026 · 8 min read

EF Core 10 Migrations and Seed Data in an Enterprise Blazor App

EF Core 10 Migrations and seed data: use HasData and custom seeding to bootstrap reference data across every environment of an enterprise Blazor Server app.

FreelanceAugust 2026 · 7 min read

The Freelance .NET Developer Stack: Source Code, Templates, and Tooling

Freelance .NET Developer Tools and the stack around them: owned source code, templates that skip setup, and tooling that makes solo delivery repeatable.

APISwaggerAugust 2026 · 8 min read

REST API with Swagger in .NET 10: Complete Documentation Guide

REST API with Swagger in .NET 10: AddSwaggerGen, XML comments, and Swagger UI setup, with complete minimal API code examples for production-ready docs.

MonolithVSAAugust 2026 · 6 min read

How to Build a Single-Project Monolith with Vertical Slice Architecture

Single-Project Monolith with Vertical Slice Architecture: one project, feature folders, full cohesion — build clean, maintainable .NET 10 code with VSA.

EF CoreProductionAugust 2026 · 8 min read

EF Core 10 Migrations in Production: Idempotent Scripts and CI/CD

EF Core 10 Migrations in production: generate idempotent SQL scripts, apply them in a CI/CD pipeline, and keep deployments safe and repeatable on every release.

FreelanceAugust 2026 · 6 min read

Freelance .NET Developer Tools: 10 Tools That Save 20 Hours a Week

Freelance .NET Developer Tools that save 20 hours a week: source templates, admin dashboards, scaffolding scripts, and automation for solo developers.

MonolithAugust 2026 · 6 min read

Single-Project Monolith vs Microservices: Rethinking Distributed Complexity

Single-Project Monolith vs Microservices: when a single app beats a fleet of services — lower operational cost, atomic transactions, and simpler debugging.

EF CoreAugust 2026 · 6 min read

EF Core 10 Migrations vs Database First: Which Strategy Is Right?

EF Core 10 Migrations vs Database First: compare code-first with Scaffold-DbContext, learn when each fits, and choose the right schema strategy for your team.

ProductionSecurityAugust 2026 · 8 min read

Production-Ready .NET Apps: Security Hardening from Day One

Production-Ready .NET Apps require security hardening. Learn rate limiting, headers, JWT, and secrets management to secure ASP.NET Core 10 from day one.

MonolithAugust 2026 · 6 min read

Single-Project Monolith: Why Fewer Projects Mean Better Code

Single-Project Monolith: why fewer projects mean better code — faster compiles, simpler DI, fewer merge conflicts, easier refactoring in one .NET 10 project.

BeginnerAugust 2026 · 6 min read

Beginner's Guide to .NET 10: From Console App to Enterprise Template

Beginner's Guide to .NET 10: turn a console app into an enterprise template with folder structure, Vertical Slice Architecture, EF Core, and authentication.

EF CoreAugust 2026 · 6 min read

EF Core 10 Migrations: Writing Seamless Schema Evolutions

EF Core 10 Migrations give you a repeatable way to evolve a schema without downtime — write clean migrations, use the model snapshot, and roll back safely.

JWTVSAAugust 2026 · 7 min read

ASP.NET Core Identity with JWT in a Vertical Slice App

ASP.NET Core Identity with JWT inside a vertical slice app: design an auth slice with register, login, refresh, and roles features in .NET 10 Blazor apps.

ProductionFreelanceAugust 2026 · 7 min read

How to Ship Production-Ready .NET Apps Without an Ops Team

Production-Ready .NET Apps are achievable solo. Learn how freelancers use Docker, health checks, error tracking, and CI/CD to operate apps without an ops team.

BeginnerAugust 2026 · 6 min read

Beginner's Guide to .NET 10: How to Learn by Reading Real Source Code

Beginner's Guide to .NET 10: learn C# faster by reading real source code, from open-source repositories to the full source code of Indotalent .NET 10 products.

EF CoreAugust 2026 · 6 min read

EF Core 10 Migrations: A Complete Guide from Add to Deploy

EF Core 10 Migrations made simple: create your first migration, apply it to a database, and ship schema changes to production safely with this walkthrough.

SecurityAugust 2026 · 7 min read

ASP.NET Core Identity with JWT vs Cookie Authentication: Choosing Wisely

ASP.NET Core Identity with JWT vs cookie authentication: compare security, CSRF, and SignalR, and choose the right approach for your Blazor Server apps.

ProductionOpsAugust 2026 · 7 min read

Production-Ready .NET Apps: Configuration, Logging, and Observability

Production-Ready .NET Apps need configuration, logging, and observability. Learn IOptions binding, Serilog, OpenTelemetry, and health checks in .NET 10.

Admin UIBlazor ServerAugust 2026 · 7 min read

Admin Dashboard Template for Blazor Server: Charts, Tables, and Navigation

Admin Dashboard Template for Blazor Server: charts, tables, and navigation — a production-ready layout with MudAppBar, MudDrawer, MudTable, and MudCharts.

BeginnerAugust 2026 · 6 min read

Beginner's Guide to .NET 10: Blazor, EF Core, and Minimal APIs Explained

Beginner's Guide to .NET 10: see how Blazor, EF Core, and Minimal APIs work together with tiny examples, from a Hello World endpoint to a data-driven page.

JWTAugust 2026 · 8 min read

ASP.NET Core Identity with JWT: Refresh Tokens, Roles, and Claims

ASP.NET Core Identity with JWT: refresh token rotation, role-based authorization, and claims policies in .NET 10 for your Blazor Server app and REST APIs.

MudBlazorAugust 2026 · 8 min read

MudBlazor UI Components: Customization, Theming, and Dark Mode

MudBlazor UI Components: customize MudTheme, typography, spacing, and dark mode with MudThemeProvider. Make your Blazor app look exactly like your brand.

ProductionAugust 2026 · 7 min read

Production-Ready .NET Apps: The Checklist Every Developer Should Follow

Production-Ready .NET Apps need more than working code. Use this checklist: configuration, health checks, resilience, secrets, CI/CD, and tested backups.

Admin UIAugust 2026 · 6 min read

Admin Dashboard Template vs Building from Scratch: The Real Cost

Admin Dashboard Template vs building from scratch: the real cost in hours, maintenance, and risk — and when rolling your own .NET admin UI makes sense.

BeginnerAugust 2026 · 6 min read

Beginner's Guide to .NET 10: Understanding the .NET Ecosystem

Beginner's Guide to .NET 10: understand the difference between the .NET runtime, SDK, ASP.NET Core, Blazor, EF Core, NuGet, and popular IDEs like Visual Studio.

EnterpriseSecurityAugust 2026 · 8 min read

Building an Enterprise Blazor Template: Folder Structure, Auth, and Tooling

Enterprise Blazor Template construction: folder structure, authentication, and tooling decisions that turn a Blazor Server project into a production platform.

IdentityJWTAugust 2026 · 8 min read

ASP.NET Core Identity with JWT: The Complete Setup for .NET 10

ASP.NET Core Identity with JWT: complete .NET 10 setup with AddIdentity, AddJwtBearer, token generation, and securing your Blazor Server UI plus REST APIs.

MudBlazorAugust 2026 · 8 min read

MudBlazor UI Components vs Bootstrap and Radzen: An Honest Comparison

MudBlazor UI Components vs Bootstrap and Radzen: an honest comparison of developer experience, theming, performance, and licensing for production Blazor apps.

Admin UIAugust 2026 · 8 min read

Admin Dashboard Template: 10 Features That Matter in Production

Admin Dashboard Template: the 10 features that matter most — authentication, navigation, dark mode, CRUD grids, charts, forms, theming, and performance.

BeginnerAugust 2026 · 7 min read

Beginner's Guide to .NET 10: Your First Week as a .NET Developer

Beginner's Guide to .NET 10: install the .NET 10 SDK, create your first console app, learn C# basics, and use git in your first week as a .NET developer.

EnterpriseAugust 2026 · 7 min read

How to Choose an Enterprise Blazor Template for Your Next Project

Enterprise Blazor Template selection guide: the criteria to evaluate templates for auth, VSA, EF Core, MudBlazor, REST APIs, and long-term maintainability.

MudBlazorBlazor ServerAugust 2026 · 8 min read

MudBlazor UI Components in Production: Tables, Forms, and Dialogs

MudBlazor UI Components in production: how MudDataGrid, MudForm, and MudDialog behave in real Blazor Server apps, with validation and performance patterns.

Admin UIMudBlazorAugust 2026 · 6 min read

Admin Dashboard Template with MudBlazor: Free Options Worth Using

Admin Dashboard Template with MudBlazor: the best free options — MudBlazor docs template, MudBlazor.Extensions, and community templates for .NET Blazor.

C# 14August 2026 · 6 min read

C# 14 Features: Upgrade Checklist from C# 12

C# 14 Features upgrade checklist from C# 12: LangVersion, breaking changes, code style, and a step-by-step path to modern .NET 10. Includes the field keyword.

EnterpriseBlazor ServerAugust 2026 · 8 min read

Enterprise Blazor Template vs Default `dotnet new blazor`: Side-by-Side

Enterprise Blazor Template vs default dotnet new blazor: a side-by-side comparison of auth, architecture, tooling, and readiness for production .NET 10 apps.

MudBlazorAugust 2026 · 8 min read

MudBlazor UI Components: 15 Components Every Blazor App Needs

MudBlazor UI Components every Blazor app needs: buttons, forms, data grids, dialogs, and more. A practical tour of 15 components with Razor code examples.

Admin UIAugust 2026 · 6 min read

Admin Dashboard Template: The Complete Buyer's Guide for .NET Developers

Admin Dashboard Template buyer's guide for .NET — what to look for: auth, responsive sidebar, dark mode, CRUD grids, charts, forms, theming, and performance.

MediatRBlazor ServerAugust 2026 · 7 min read

CQRS with MediatR in a Blazor Server App: End-to-End Example

CQRS with MediatR in a Blazor Server app: wire commands and queries into real components. Follow an end-to-end .NET 10 example with MudBlazor and SignalR.

C# 14VSAAugust 2026 · 6 min read

C# 14 Features in Vertical Slice Architecture: Cleaner Slices

C# 14 Features in Vertical Slice Architecture: slimmer handlers, less boilerplate, and cleaner slices with field, params, and extension members in .NET 10.

EnterpriseAugust 2026 · 8 min read

The 10 Features of a True Enterprise Blazor Template

Enterprise Blazor Template features: the 10 capabilities that separate a true enterprise template from a demo project, from JWT auth to observability and CI/CD.

CQRSAugust 2026 · 7 min read

CQRS with MediatR vs Plain Services: When to Use Each Pattern

CQRS with MediatR vs plain services: understand the real trade-offs before you choose. Compare coupling, control flow, testing, plus real .NET 10 examples.

C# 14August 2026 · 6 min read

C# 14 Features: Field Properties and Other Productivity Wins

C# 14 Features productivity wins: the field keyword kills backing-field boilerplate, plus params collections, nameof on generics, and leaner domain models.

EnterpriseAugust 2026 · 7 min read

.NET Enterprise Architecture: A Practical Blueprint for .NET 10 Teams

.NET Enterprise Architecture blueprint for .NET 10 teams — a step-by-step checklist from project layout and authentication to REST APIs and deployment.

EnterpriseBlazor ServerAugust 2026 · 7 min read

Enterprise Blazor Template: What Every Production App Needs From Day One

Enterprise Blazor Template essentials: what a production-grade Blazor Server app needs from day one — Identity auth, EF Core migrations, MediatR, and MudBlazor.

VSAEF CoreAugust 2026 · 6 min read

Vertical Slice Architecture with EF Core: Where Migrations and Data Access Live

Vertical Slice Architecture with EF Core: where the DbContext and migrations live, one-context versus per-slice contexts, and a complete EF Core slice.

Blazor ServerVSAAugust 2026 · 6 min read

Inside the Blazor Server Architecture of a Production CRM System

Blazor Server Architecture in production: an inside look at a CRM with circuits, scoped DI, tenant isolation, and rendering patterns that hold up under load.

MediatRAugust 2026 · 7 min read

CQRS with MediatR Pipeline Behaviors: Validation, Logging, and Transactions

CQRS with MediatR pipeline behaviors add cross-cutting concerns to every command and query. Learn validation, logging, and transaction behaviors in .NET 10.

C# 14August 2026 · 6 min read

C# 14 Features: Modern C# in Action with Real .NET 10 Code

C# 14 Features in action with real .NET 10 code — modern C# using field, params collections, nameof on generics, and extension members end to end in a slice.

EnterpriseMonolithAugust 2026 · 7 min read

.NET Enterprise Architecture: Modular Monoliths and Domain Boundaries

.NET Enterprise Architecture through modular monoliths — drawing domain boundaries inside a single process, sharing data safely, and knowing when to split.

VSAArchitectureAugust 2026 · 6 min read

Vertical Slice Architecture vs Clean Architecture: Which One Should You Choose?

Vertical Slice Architecture vs Clean Architecture: compare coupling, testing, and maintainability to choose the right structure for your .NET 10 application.

Blazor ServerAugust 2026 · 6 min read

Blazor Server Architecture vs MVC: Why Component-Based Wins

Blazor Server Architecture vs MVC: why component-based Razor UI beats stateless controllers for interactive enterprise applications built on modern .NET 10.

CQRSMediatRAugust 2026 · 7 min read

CQRS with MediatR: A Practical Guide for .NET 10

CQRS with MediatR is a practical pattern for .NET 10 apps. Learn commands vs queries, handler wiring, validation, and how to keep code simple and testable.

C# 14August 2026 · 6 min read

C# 14 Features: What's New in the Latest Language Release

C# 14 Features: what's new in the latest language release — field keyword, params spans, nameof on generics, ref structs, and extension members in preview.

EnterpriseAugust 2026 · 6 min read

.NET Enterprise Architecture for CRM, HRM, and WMS Systems

.NET Enterprise Architecture for CRM, HRM, and WMS systems — how real products structure modules, domains, REST APIs, and Blazor UI on .NET 10 in production.

VSA.NET 10August 2026 · 6 min read

Vertical Slice Architecture in Practice: A Walkthrough of 10 Real Slices

Vertical Slice Architecture in practice: a walkthrough of 10 real slices from production .NET 10 apps, from simple CRUD endpoints to complex workflows.

Blazor ServerAugust 2026 · 6 min read

Blazor Server Architecture Best Practices: State, Rendering, and Lifecycles

Blazor Server Architecture best practices for state, rendering, and component lifecycles, with actionable .NET 10 patterns for ShouldRender and cleanup.

Blazor ServerEnterpriseAugust 2026 · 6 min read

Blazor Server vs WebAssembly: Migration Scenarios and Use Cases

Blazor Server vs WebAssembly migration scenarios and use cases: when to switch hosting models, and how Blazor Web App hybrid render modes ease the move.

.NET 10VSAAugust 2026 · 7 min read

.NET 10 Source Code: What's Inside a Production-Ready Blazor Application

.NET 10 Source Code in a production Blazor app: Program.cs, dependency injection, EF Core, JWT auth, and vertical slices. See what each part really does.

EnterpriseVSAAugust 2026 · 6 min read

.NET Enterprise Architecture: Layered, Clean, or Vertical Slices?

.NET Enterprise Architecture compared: layered, clean, and vertical slice — when each wins in 2026, the trade-offs, and a decision path for .NET 10 teams.

VSAAugust 2026 · 6 min read

Vertical Slice Architecture: The Complete Guide for .NET Developers

Vertical Slice Architecture organizes .NET code by business features. This complete guide covers feature folders, Minimal APIs, MediatR handlers, and CQRS.

Blazor ServerEnterpriseAugust 2026 · 6 min read

Designing Blazor Server Architecture for Enterprise Applications

Blazor Server Architecture for enterprise: patterns for scoped services, multi-tenancy, background work, and security boundaries in a .NET 10 application.

Blazor ServerMudBlazorAugust 2026 · 6 min read

Blazor Server vs WebAssembly: The Developer Experience Difference

Blazor Server vs WebAssembly developer experience differences: C# everywhere, breakpoints in the server process, MudBlazor productivity, and JS interop.

.NET 10August 2026 · 6 min read

How to Read .NET 10 Source Code Effectively as a Developer

.NET 10 Source Code reading strategies: start at Program.cs, trace one request end-to-end, and lean on IDE tooling to map dependencies without getting lost.

EnterpriseAugust 2026 · 7 min read

.NET Enterprise Architecture: The Patterns That Actually Matter in 2026

.NET Enterprise Architecture in 2026: the patterns that still earn their keep — vertical slices, modular monoliths, CQRS, and DDD — with .NET 10 code.

Blazor ServerAugust 2026 · 7 min read

Blazor Server Architecture: How SignalR, DI, and Razor Components Fit Together

Blazor Server Architecture: how SignalR circuits, scoped DI, and Razor component lifecycles fit together in a modern .NET 10 app, with practical code examples.

Blazor ServerAugust 2026 · 7 min read

Blazor Server vs WebAssembly: Cost and Hosting Comparison

Blazor Server vs WebAssembly cost and hosting comparison: RAM per circuit and persistent connections versus cheap static hosting and a separate API backend.

.NET 10VSAAugust 2026 · 7 min read

.NET 10 Source Code Tour: From Program.cs to Vertical Slices

.NET 10 Source Code tour: follow one request from the Program.cs startup file through dependency injection and EF Core into a vertical slice, end to end.

AuditBlazor ServerAugust 2026 · 6 min read

Audit Trail Implementation in a Blazor Server Admin Dashboard

Audit Trail Implementation in Blazor Server: surface change history in an admin dashboard with MudBlazor tables, filters, and drill-down details. C# included.

Blazor ServerProductionAugust 2026 · 7 min read

Blazor Server vs WebAssembly: Performance Benchmarks You Can Trust

Blazor Server vs WebAssembly performance benchmarks you can really trust: compare SignalR circuit latency and first render with WASM download and boot time.

.NET 10August 2026 · 6 min read

Where to Get Real .NET 10 Source Code (Not Just Tutorial Snippets)

.NET 10 Source Code you can study: the official dotnet and aspnetcore repositories, Microsoft Learn samples, open source apps, and complete paid codebases.

ASP.NET CoreAugust 2026 · 7 min read

ASP.NET Core 10 Features: Upgrading from ASP.NET Core 8 Without Pain

ASP.NET Core 10 Features: upgrading from ASP.NET Core 8 without pain — target net10.0, handle breaking changes, and follow a step-by-step migration plan.

AuditAugust 2026 · 6 min read

Audit Trail Implementation: Who Changed What, When, and Why

Audit Trail Implementation: track user identity, timestamps, and change reasons to prove who changed what, when, and why in your .NET app with C# examples.

.NET 10EnterpriseAugust 2026 · 8 min read

.NET 10 Source Code Analysis: How Indotalent Structures Enterprise Apps

.NET 10 Source Code analysis of an enterprise Blazor application: how Indotalent structures projects, vertical slices, EF Core, Identity, and multi-tenancy.

CQRSVSAMediatRJuly 2026 · 14 min read

CQRS + MediatR in VSA: Make Your Code Not Spaghetti Code

How CQRS and MediatR inside Vertical Slice Architecture eliminate spaghetti code. See the before-and-after transformation of a tangled controller into clean VSA slices.

AI + VSAJuly 2026 · 9 min read

Why Vertical Slice Architecture is the Best Architecture for AI-Assisted Development

VSA organizes code by feature in a single folder end-to-end. This makes AI tools like GitHub Copilot and ChatGPT dramatically more effective by keeping context focused in one place. Stop jumping between 7 projects.

Blazor ServerJune 2026 · 7 min read

Blazor Server vs WebAssembly: Choosing the Right Hosting Model

Compare Blazor Server and Blazor WebAssembly for enterprise applications. Which hosting model is right for your .NET 10 project? Complete analysis with pros and cons.

VSAJune 2026 · 8 min read

Introduction to Vertical Slice Architecture in .NET 10

Learn how Vertical Slice Architecture (VSA) organizes .NET 10 code by business features instead of technical layers. Complete with Minimal API code examples.

VSAMay 2026 · 6 min read

How Vertical Slice Architecture Eliminates "Project Hell"

From 15+ projects to a single monolith. How VSA keeps related code together, slashes compilation time, and makes onboarding instant.

VSAMay 2026 · 9 min read

Building Maintainable .NET Applications with MediatR and VSA

How MediatR enables CQRS within Vertical Slice Architecture. Pipeline behaviors for validation, logging, and transactions. Complete code examples.

Blazor ServerApril 2026 · 7 min read

Blazor Server Performance Optimization: Real-World Techniques

ShouldRender, virtualization, no-tracking queries, and server-side pagination for Blazor Server apps. Production-tested techniques used in Indotalent products.

MudBlazorApril 2026 · 5 min read

MudBlazor: The Ultimate Component Library for Blazor Server

50+ Material Design components. Why MudBlazor is the de facto standard for Blazor enterprise apps. Pure C# components with native two-way binding.

Blazor ServerMarch 2026 · 8 min read

Securing Your Blazor Server Application with JWT and ASP.NET Core Identity

Four-layer security for Blazor Server: ASP.NET Core Identity, JWT authentication for REST APIs, policy-based authorization, and SignalR protection. Complete guide.

VSAMarch 2026 · 10 min read

From Clean Architecture to Vertical Slices: A Practical Migration Guide

Step-by-step approach to migrate from layered architecture to VSA, one feature at a time. Phase 1: pick one feature. Phase 2: extract validation. Phase 3: repeat.

VSAFeb 2026 · 6 min read

Real-World VSA: Shipping Production-Ready .NET 10 Apps with Indotalent

How each Indotalent product is built. The complete stack, the architecture, and what you get for $21. Production-ready VSA source code with 50-100 feature slices each.

VSAFeb 2026 · 8 min read

Vertical Slice Architecture vs Traditional Layered Architecture: Side-by-Side Code

7 files in 4 projects vs 1 file. A concrete code comparison of VSA and traditional layered architecture for the same 'Create Customer' feature.

RosterMVCAugust 2026 · 8 min read

MVC Roster Manager: Complete Employee Shift Scheduling Solution

Complete overview of MVC Roster Manager: employee shift scheduling, roster lifecycle, shift swap, leave management, attendance tracking, and self-service portal.

RosterMVCVSAAugust 2026 · 9 min read

MVC Roster Manager Architecture: VSA, CQRS, and Vue 3 Frontend

Deep dive into MVC Roster Manager: VSA structure, CQRS handlers, Minimal API endpoints, Vue 3 + DataTables, Hangfire jobs, and multi-database support.

RosterBusinessAugust 2026 · 7 min read

MVC Roster Manager Business Use Cases: HR, Retail, Hospitality & Healthcare

Real-world business use cases for MVC Roster Manager: HR departments, retail chains, hospitality, healthcare scheduling. ROI analysis vs manual scheduling.

ProjectMVCAugust 2026 · 8 min read

MVC Project Manager: Complete Resource & Project Management Solution

Complete overview of MVC Project Manager: master data, expert directory, project charters, resource assignment, timesheet approval, skill matrix, and self-service.

ProjectMVCVSAAugust 2026 · 9 min read

MVC Project Manager Architecture: VSA, CQRS, and Resource Allocation Engine

Deep dive into MVC Project Manager: VSA, CQRS, resource allocation with 100% rule, approval workflows, Minimal API, and Vue 3 frontend.

ProjectBusinessAugust 2026 · 7 min read

MVC Project Manager Business Use Cases: Services, IT, Agencies & Engineering

Real-world business use cases for MVC Project Manager: professional services, IT consultancies, agencies, engineering firms. Resource utilization ROI analysis.

MealMVCAugust 2026 · 8 min read

MVC Meal Manager: Complete Meal Ordering Solution for Staff & Guests

Complete overview of MVC Meal Manager: vendor management, meal packages, serving types, ordering workflow, receiving verification, and self-service portal.

MealMVCVSAAugust 2026 · 9 min read

MVC Meal Manager Architecture: VSA, CQRS, and Order Lifecycle Engine

Deep dive into MVC Meal Manager: VSA, CQRS, order lifecycle state machine, business workflows, Vue 3 frontend, and Minimal API endpoints.

MealBusinessAugust 2026 · 7 min read

MVC Meal Manager Business Use Cases: Corporate Cafeterias, Events & Staff Welfare

Real-world business use cases for MVC Meal Manager: corporate cafeterias, event catering, staff welfare programs, cost control. ROI analysis for meal automation.

InvoiceMVCAugust 2026 · 8 min read

MVC Invoice Manager: Complete Invoicing Solution for .NET Applications

Complete overview of MVC Invoice Manager: 7 master registers, customer/product directories, invoice lifecycle, PDF/Excel export, and payment tracking.

InvoiceMVCVSAAugust 2026 · 9 min read

MVC Invoice Manager Architecture: VSA, CQRS, and Auto-Calculated Totals

Deep dive into MVC Invoice Manager: VSA, CQRS with plain handlers, auto-calculated totals, invoice lifecycle state machine, and Minimal API endpoints.

InvoiceBusinessAugust 2026 · 7 min read

MVC Invoice Manager Business Use Cases: Freelancers, SMBs & Service Businesses

Real-world business use cases for MVC Invoice Manager: freelancers, SMBs, service businesses. Replacing spreadsheets, cash flow visibility, professional invoicing ROI.

HelpdeskMVCAugust 2026 · 8 min read

MVC Helpdesk Manager: Complete IT Support Ticketing Solution

Complete overview of MVC Helpdesk Manager: teams, agents, SLA policies, ticket lifecycle, discussion threads, and self-service portal.

HelpdeskMVCVSAAugust 2026 · 9 min read

MVC Helpdesk Manager Architecture: VSA, SLA Engine, and Role-Based Access

Deep dive into MVC Helpdesk Manager: VSA, SLA solve estimation, role-based access (Guest/Member/Admin), ticket ownership enforcement, and Vue 3 frontend.

HelpdeskBusinessAugust 2026 · 7 min read

MVC Helpdesk Manager Business Use Cases: IT Teams, MSPs & Education

Real-world business use cases for MVC Helpdesk Manager: internal IT, MSPs, educational institutions. SLA compliance and ticket resolution metrics ROI.

BookingMVCAugust 2026 · 8 min read

MVC Booking Manager: Complete Resource Booking Solution for Organizations

Complete overview of MVC Booking Manager: org hierarchy, resource catalog, booking lifecycle, check-in/out, utilization reports, and approval workflows.

BookingMVCVSAAugust 2026 · 9 min read

MVC Booking Manager Architecture: VSA, State Machine, and Resource Validation

Deep dive into MVC Booking Manager: VSA, booking state machine, resource assignment validation, check-in/check-out with condition tracking, and Vue 3.

BookingBusinessAugust 2026 · 7 min read

MVC Booking Manager Business Use Cases: Fleet, Facility & Equipment Management

Real-world business use cases for MVC Booking Manager: fleet management, facility management, equipment lending. Utilization analytics ROI.

AssetMVCAugust 2026 · 8 min read

MVC Asset Manager: Complete IT Asset Lifecycle Management Solution

Complete overview of MVC Asset Manager: master data, asset models, lifecycle stages, depreciation tracking, employee assignment, and My Asset portal.

AssetMVCVSAAugust 2026 · 9 min read

MVC Asset Manager Architecture: VSA, Lifecycle Enforcement, and Depreciation Engine

Deep dive into MVC Asset Manager: VSA, asset assignment rules, depreciation profiles, lifecycle stage enforcement, and Vue 3 frontend.

AssetBusinessAugust 2026 · 7 min read

MVC Asset Manager Business Use Cases: IT, Compliance & Asset-Intensive Industries

Real-world business use cases for MVC Asset Manager: IT departments, compliance (SOX, ISO), asset-intensive industries. Procurement planning ROI.

Ready to Apply These Patterns?

Every Indotalent product is built with VSA, Blazor Server, and MudBlazor. Complete source code — $21.

Explore Products