frameworks
ASP.NET Core Articles, Tutorials & News
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
1196 articles Updated Page 11 of 48
Browse additional ASP.NET Core articles from the DotNetNews archive.
ASP.NET Core articles
Page 11 of 48
Newest first
-
Structured Logging with Serilog in ASP.NET
benedictodoh.medium.com Issue #427
Serilog is a powerful, flexible, and easy-to-use logging library for .NET that enables developers to capture structured, queryable logs…
-
ASP.NET Core + JWT + OAuth 2.0 — Authentication Done Right in 2026
medium.com Issue #426
Most .NET auth tutorials show you what works in a demo. This one shows you what survives production — with token refresh, role-based…
-
What is Dependency Injection in ASP.NET Core?
c-sharpcorner.com Issue #426
Unlock the power of Dependency Injection (DI) in ASP.NET Core! Learn how DI promotes loose coupling, improves testability, and builds scalable applications. Master DI today!
-
How to Implement JWT Authentication in ASP.NET Core Step by Step
c-sharpcorner.com Issue #426
Secure your ASP.NET Core APIs with JWT! This step-by-step guide covers implementation, best practices, and common pitfalls for robust authentication. Build secure, scalable web apps.
-
Complete Guide to HTML Helpers in ASP.NET MVC
c-sharpcorner.com Issue #426
Master ASP.NET MVC development with HTML Helpers! This guide covers all essential helpers, from form creation to validation, with clear examples and best practices. Simplify your Razor views!
-
Building Scalable SaaS with Multi-Tenant Architecture in .NET
medium.com Issue #425
Multi-tenant architecture has become a cornerstone in modern SaaS application design, especially within the .NET ecosystem. As businesses…
-
IOptions vs IOptionsSnapshot vs IOptionsMonitor in .NET — Pick the Right One
medium.com Issue #425
You open a .NET project. You write something in appsettings.json. You inject IOptions<T> into your service. Everything works. Life is good.
-
A Generic Query Engine for Data Grids in C# (Part 1)
medium.com Issue #425
Every data grid sends filters and sort orders to your API. If you’re writing that logic per entity, you’re doing it wrong.
-
A Generic Query Engine for Data Grids in C# (Part 2)
medium.com Issue #425
Before any expression tree is built, the engine must decide what’s allowed in — and what gets rejected at the door.
-
Preventing Overposting in ASP.NET Core JSON Patch APIs
derek-ji.medium.com Issue #425
A custom Model Binder that enforces field-level access control using annotations
-
Mastering the Options Pattern in .NET
medium.com Issue #425
If you’ve spent any time building APIs or microservices in ASP.NET Core, you’ve dealt with configuration. API keys, database connection…
-
ASP.NET Core .NET 10 Program.cs Explained: The Complete Guide to Everything You Can Configure
akash-shah.medium.com Issue #424
When developers first start working with ASP.NET Core, the Program.cs
-
Building an AI-Powered Translator App Using Angular, .NET Core, and Python
medium.com Issue #424
Introduction
-
.NET & C# for FHIR Interoperability 3 — Resource Validator
medium.com Issue #424
Author: Rong Fan | FHIR Solution Provider | 10+ years .NET/C# expertise
-
Why Your .NET API Is Slow — And 6 Ways to Fix It Fast
pushpadangi.medium.com Issue #424
.NET · ASP.NET Core · Performance · C# · Web Development · Backend
-
Understanding Cookies in C#: A Guide for Modern .NET Developers
medium.com Issue #424
If you’ve ever tried to load a personalized dashboard, process authenticated reports, or maintain user sessions in your C# web application…
-
High-Performance Bulk CRUD Operations in ASP.NET Core with Oracle
c-sharpcorner.com Issue #423
Boost ASP.NET Core performance with Oracle! Learn bulk CRUD using Global Temporary Tables, stored procedures, and Dapper for efficient handling of 100K+ records.
-
Dependency Injection in C#
c-sharpcorner.com Issue #423
Learn Dependency Injection (DI) in C# with a practical example! Discover how to decouple code, improve testability, and easily switch services like Email to SMS. Perfect for ASP.NET Core projects.
-
-
45 .NET Web API Interview Questions That Actually Get Asked in 2026
codewithmukesh.com Issue #422
45 practical .NET Web API interview questions with expert answers, code examples, and red flags. ASP.NET Core, EF Core 10, auth, caching, architecture.
-
ASP.NET Core Output Cache: How to Speed Up Your API with In-Memory Cache and Redis
antondevtips.com Issue #422
Learn how to use Output Cache in ASP.NET Core using IMemoryCache, IDistributedCache, and Redis. This guide covers Output Cache setup in ASP.NET Core, expiration time, cache policies, VaryByHeader, Var
-
Build Real-Time Pub/Sub Messaging with MQTT, EMQX, .NET, and Angular
mirzaleka.medium.com Issue #421
A hands-on guide to building client-server Pub/Sub messaging with MQTT and EMQX across ASP.NET, VB.NET, and Angular. We explore the basics…
-
GitHub Actions for .NET: Build, Test, and Deploy Your API
medium.com Issue #421
A complete CI/CD pipeline from zero — automated builds, test coverage, Docker images tagged by commit SHA, and deployment to Azure with a…
-
Return Types in ASP.NET MVC
c-sharpcorner.com Issue #421
Master ASP.NET MVC return types! Learn about ActionResult, ViewResult, JsonResult, FileResult, and more with practical examples. Build better web applications!
-
How Model Binding Works in ASP.NET MVC
c-sharpcorner.com Issue #421
Unlock the power of ASP.NET MVC Model Binding! Learn how it automatically maps form data to C# objects, simplifying your code and boosting development speed. Step-by-step guide included!