惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
Vercel News
Vercel News
D
DataBreaches.Net
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
小众软件
小众软件
美团技术团队
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
D
Docker
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
H
Hackread – Cybersecurity News, Data Breaches, AI and More
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
S
SegmentFault 最新的问题
云风的 BLOG
云风的 BLOG
B
Blog
雷峰网
雷峰网
The Cloudflare Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building a Production-Ready ASP.NET Core Identity System ...
Dominic Robi · 2026-05-08 · via DEV Community


Authentication is one of the most critical and most commonly misconfigured layers of any web application. Yet in the .NET ecosystem, many developers still build user registration and login flows from scratch — introducing inconsistencies, security gaps, and weeks of avoidable rework.

To solve this, I built and open-sourced aspnet-core-2.1-user-registration-login-application: a fully scaffolded, production-ready C# membership system built on ASP.NET Core 2.1 with MySQL as the backend — designed to serve as a reusable foundation for any web application requiring identity management.

👉 View the Repository on GitHub


The Problem: Identity Is Hard to Get Right

Every enterprise web application needs identity. But most teams either:

  • Roll their own authentication — risking security vulnerabilities through improper password hashing, session mismanagement, or insecure token storage
  • Spend days configuring ASP.NET Core Identity from scratch, fighting Entity Framework migrations, and wiring up database providers
  • Rely on third-party SaaS identity solutions that introduce vendor lock-in and ongoing cost

What the .NET community has long needed is a clean, open, fully functional reference implementation that teams can fork, configure, and ship — not documentation to read, but code to run.


What the Project Delivers

This is a complete, end-to-end C# ASP.NET Core Razor Pages membership application, pre-wired with ASP.NET Core Identity and MySQL via Entity Framework Core. It provides an immediate, working baseline for any application requiring authenticated access.

Core Features

User Registration — New users can self-register with email and password. Passwords are hashed using ASP.NET Core Identity's PasswordHasher, which implements PBKDF2 with HMAC-SHA256 — industry-standard, not a custom implementation.

User Login — Secure session-based authentication using encrypted cookies. The login flow validates credentials against the Identity store, handles failed attempts gracefully, and persists sessions across requests.

Forgot/Reset Password — A complete password recovery flow, including token generation, email-based reset links, and secure token validation on submission. This is one of the most error-prone flows to build manually — it's done correctly here out of the box.

User Dashboard — An authenticated area accessible only to logged-in users, demonstrating route-level authorization guards using [Authorize] attributes — a pattern directly transferable to any real application.

Admin Area — A separate AdminApp module with its own solution structure, demonstrating area-based authorization and multi-role access control separation.


Architecture & Technical Decisions

ASP.NET Core Identity + MySQL — A Non-Trivial Integration

By default, Microsoft's Identity scaffolding assumes SQL Server. Wiring it to MySQL requires explicit configuration of the Pomelo MySQL provider for Entity Framework Core — a choice made deliberately here to widen applicability to teams running open-source database stacks, cloud-hosted MySQL (AWS RDS, Azure Database for MySQL, PlanetScale), or self-hosted environments.

The connection string abstraction in appsettings.json means the same codebase runs against local, staging, or production databases without code changes:

"ConnectionStrings": {
  "DefaultConnection": "server=127.0.0.1;port=3306;database=db-name;uid=db-user;password=db-password"
}

Enter fullscreen mode Exit fullscreen mode

This environment-agnostic configuration is a prerequisite for CI/CD-ready, containerizable applications.

Entity Framework Core Migrations — Code-First Database Management

Rather than shipping a SQL dump, the project uses EF Core's code-first migration model. The database schema is generated and versioned in C# — giving developers full schema control through source-controlled migration files.

Getting started is a three-command sequence:

# Step 1 — Delete the existing Migrations folder (to regenerate for your DB)

# Step 2 — Generate migrations
PM> Add-Migration InitialCreate

# Step 3 — Apply to the database
PM> Update-Database

Enter fullscreen mode Exit fullscreen mode

This approach means schema changes are trackable, reversible, and deployable as part of any standard release pipeline.

Razor Pages — Clean MVC Without the Overhead

The application uses Razor Pages over the traditional MVC controller/view split — a deliberate architectural choice that co-locates page logic with its view, reduces boilerplate, and maps more directly to the feature-centric folder structure modern teams prefer.

Each page has a corresponding PageModel class with clearly separated OnGet and OnPost handlers — making the codebase readable, testable, and easy to extend.

Admin/User Separation via ASP.NET Core Areas

The project separates the AdminApp from the standard user-facing application using ASP.NET Core Areas — a clean pattern for multi-role systems where administrators and end users interact with entirely different surfaces of the same application, without sharing controllers, views, or routing.


Solution Structure

aspnet-core-2.1-user-registration-login-application/
├── AdminApp/               # Admin area with separate routing
│   ├── Controllers/
│   ├── Models/
│   ├── Views/
│   └── Areas/
├── .vs/                    # VS solution config
├── AdminApplication.sln    # Solution file
└── README.md

Enter fullscreen mode Exit fullscreen mode

Language breakdown: C# 94.2% · HTML 5.7% — reflecting that this is principally a server-side application with Razor-rendered views, not a JavaScript-heavy SPA.


Why Open Source?

Enterprise authentication patterns should not be proprietary knowledge. The patterns implemented in this project — secure session management, EF Core migrations, area-based authorization, MySQL integration — are patterns that junior and mid-level .NET developers encounter on almost every project, yet spend significant time rediscovering.

By releasing this as a reusable open-source scaffold, the goal is to:

  • Save teams days of configuration that add no business value
  • Prevent common security mistakes by providing a correct-by-default implementation
  • Serve as a living reference for best practices in ASP.NET Core identity management
  • Accelerate onboarding — new developers can read this codebase to understand how Identity, EF Core, and Razor Pages fit together in a real application

The project has been starred and forked by developers globally, validating its utility as a community resource.


Who Should Use This

Use Case How It Helps
New .NET web projects Skip identity setup, ship features faster
Learning ASP.NET Core Identity See a complete, working implementation
MySQL + .NET integration Reference for Pomelo EF Core MySQL provider setup
Multi-role web apps Admin/User area separation pattern
Rapid prototyping Working auth in minutes, not days

Extending the Template

The scaffold is intentionally minimal — it's a starting point, not a framework. Common extensions teams add from here include:

  • OAuth2 / Social Login — Adding Google, GitHub, or Microsoft login via AddAuthentication().AddGoogle()
  • Two-Factor Authentication (2FA) — ASP.NET Core Identity has built-in TOTP support ready to enable
  • Email Verification — Token-based email confirmation on registration
  • Role-Based Access Control (RBAC) — Extending the [Authorize(Roles = "Admin")] pattern to granular permission sets
  • JWT API Authentication — Adding a parallel API surface alongside the Razor Pages UI

Get Started in 5 Minutes

# 1. Clone the repo
git clone https://github.com/robinsondominic/aspnet-core-2.1-user-registration-login-application

# 2. Open AdminApplication.sln in Visual Studio

# 3. Update appsettings.json with your MySQL connection string

# 4. In Package Manager Console:
Add-Migration InitialCreate
Update-Database

# 5. Run the application — login and register pages are live

Enter fullscreen mode Exit fullscreen mode


Get Involved

This is an open-source project and contributions are welcome — whether that's adding features, improving documentation, or raising issues for discussion.

👉 aspnet-core-2.1-user-registration-login-application on GitHub

If this saved you setup time or served as a useful reference, a ⭐ on the repo goes a long way in helping others find it.


Building .NET identity systems and have patterns worth sharing? Drop them in the comments — let's build a stronger open-source .NET community together. 👇

#dotnet #csharp #aspnetcore #webdev #opensource #mysql #authentication #identity #backend #programming