apis
ASP.NET Core Web API Articles, Tutorials & News
ASP.NET Core Web API articles, tutorials, and news from the DotNetNews archive.
333 articles Updated Page 5 of 14
Browse additional ASP.NET Core Web API articles from the DotNetNews archive.
ASP.NET Core Web API articles
Page 5 of 14
Newest first
-
API Versioning Should Be Your Last Resort
milanjovanovic.tech Issue #479
Most teams reach for v2 too early because they don't have a contract evolution strategy. Here's the API change management approach I prefer: evolve contracts safely, deprecate deliberately, and versio...
-
Refactoring an ASP.NET Core API with clean architecture
roundthecode.com Issue #478
Learn how to refactor an ASP.NET Core API using clean architecture by separating validation, business logic, and database access into clear layers. The page Refactoring an ASP.NET Core API with clean ...
-
Getting the Client IP Address in ASP.NET Core
weblog.west-wind.com Issue #477
When I need to pick up the client IP Address in ASP.NET Core I always forget where to find the connection information. It's simple enough: HttpContext?.Connection?.RemoteIpAddress but I never remember...
-
ASP.NET Core Rate Limiting Best Practices for High-Traffic APIs
c-sharpcorner.com Issue #476
Master ASP.NET Core rate limiting for high-traffic APIs. Protect against abuse, ensure stability, and optimize performance with best practices.
-
Building AI-Native APIs with ASP.NET Core and Natural Language Interfaces
c-sharpcorner.com Issue #475
Build AI-native APIs with ASP.NET Core. Leverage natural language, intent processing, and semantic search for intelligent applications.
-
-
How to upload files in an ASP.NET Core Web API
blog.elmah.io Issue #474
Files are an integrated part of an application. From a social app to an ERP, some form of media exists in the ecosystem. .NET Core APIs provide built-in support for uploading and fetching documents. I...
-
Designing high-throughput APIs for 1M requests/minute .NET
blog.elmah.io Issue #474
table of contents Scaling horizontally is great… until the bill comes. Hence, as a startup or a big firm, you always need to be careful about billing while maintaining competitiveness. Every user who ...
-
API Versioning in ASP.NET Core: Best Practices and Common Mistakes
c-sharpcorner.com Issue #473
Learn API Versioning in ASP.NET Core with practical examples. Explore versioning strategies, best practices, common mistakes, and implementation techniques.
-
Deep Dive into ASP.NET Core's WebApplication — What Really Happens Under the Hood
medium.com Issue #469
This single line WebApplication.CreateBuilder(args) does a lot of heavy lifting before your first request ever arrives. Let's peel back…
-
OWASP Top 10 for .NET Developers -Part 3: Preventing Injection Attacks
medium.com Issue #469
Modern web applications process enormous amounts of user-controlled data every second - login credentials, search queries, transaction…
-
Designing high-throughput APIs for 1M requests/minute .NET
blog.elmah.io Issue #468
table of contents Scaling horizontally is great… until the bill comes. Hence, as a startup or a big firm, you always need to be careful about billing while maintaining competitiveness. Every user who ...
-
Building a Full-Stack Task Manager App with .NET Core Web API + Angular 20
medium.com Issue #468
Build a complete Task Manager app with JWT auth, Angular Signals, and EF Core
-
Reverse Engineering an API in .NET Core – Complete Practical Example
c-sharpcorner.com Issue #465
Master API reverse engineering in .NET Core! Learn to analyze undocumented APIs, recreate functionality, and integrate with systems using practical examples and tools.
-
How to Scale Long-Running API Requests
milanjovanovic.tech Issue #463
When a single API call takes minutes to finish, it punishes both your users and your server. Here's the progression I walk through to turn long-running endpoints into something responsive, scalable, a...
-
How to upload files in an ASP.NET Core Web API
blog.elmah.io Issue #462
Files are an integrated part of an application. From a social app to an ERP, some form of media exists in the ecosystem. .NET Core APIs provide built-in support for uploading and fetching documents. I...
-
App crashed in Production
medium.com Issue #462
This API had been working fine in production for 2 years.
-
Getting the Client IP Address in ASP.NET Core
weblog.west-wind.com Issue #459
When I need to pick up the client IP Address in ASP.NET Core I always forget where to find the connection information. It's simple enough: HttpContext?.Connection?.RemoteIpAddress but I never reme...
-
Securing Swagger, Scalar, and Health Endpoints in ASP.NET
medium.com Issue #459
🚨 Your API Might Be Secure… But Your Swagger UI Isn’t
-
I Spent 6 Months Treating My .NET API Like a React App. Here’s the Mess I Made
ajaybisht-dev.medium.com Issue #459
A full-stack confession from someone who should have known better
-
“Frontend Filtering Works… Until Pagination Enters the Chat”
medium.com Issue #459
Users were searching for orders that definitely existed in our database — but getting empty results.
-
Optimistic Concurrency in EF Core 10: ASP.NET Core Web API Guide
codewithmukesh.com Issue #456
Learn how to prevent data conflicts in ASP.NET Core Web API using optimistic concurrency with EF Core 10. RowVersion tokens, conflict resolution, retry strategies, and a decision matrix.
-
Disable HTTP caching by default in ASP.NET Core APIs
meziantou.net Issue #452
When building APIs with ASP.NET Core, it's crucial to explicitly control caching behavior. Unlike web pages where caching often improves user experience, API responses should not be cached by default ...
-
ASP.NET Web API CRUD Operations
news.google.com Issue #451
ASP.NET Web API CRUD Operations - .NET8 And Entity Framework Core Tutorial (yY7pLCuHov)
-
Combining API versioning with OpenAPI in .NET 10 applications
devblogs.microsoft.com Issue #448
Learn how to implement API versioning in your .NET 10 applications using OpenAPI for better API management and documentation. The post Combining API versioning with OpenAPI in .NET 10 applications ap...