Today’s articles include topics on ASP.NET Core API Integration, .NET 10 Preview, Hybrid Caching, and New Features in C# 13

.NET News - Daily C# and .NET curated articles from all over the internet.

Feel like sharing?

From integrating ASP.NET Core APIs with Nuxt to leveraging HybridCache, tuning databases with EF and MongoDB, and exploring .NET 10 and C# 13 — this issue equips developers with powerful tools and patterns.

Your Daily Dose of .NET Insights, Tools, and Trends – Issue #145

List of Article’s

Integrating an ASP.NET Core API with a Nuxt Front End: A Step-by-Step Guide

https://techwatching.dev/posts/aspnetcore-with-nuxt

Integrating a Nuxt.js front end with an ASP.NET Core API offers developers a powerful full-stack architecture combining the best of Vue and .NET technologies. In this hands-on guide, you’ll learn how to proxy API requests, enable SSR compatibility, and build a modern web application that seamlessly connects a Nuxt 3 UI with a RESTful ASP.NET backend—all using clean architecture, command-line tools, and a development-first approach. Whether you’re building enterprise-grade apps or experimenting with a hybrid Vue/.NET stack, this tutorial covers the essentials of configuring proxy rules, handling CORS, and launching both environments locally with optimized dev workflows.

xUnit Advanced Features: Fixtures

https://medium.com/@leogjorge/xunit-advanced-features-fixtures-6b0ca4d10469

Mastering xUnit’s advanced fixture features like ClassFixture and CollectionFixture is essential for building high-performance, maintainable integration tests in ASP.NET and .NET projects. This in-depth guide walks through using shared test contexts with MongoDB, explains fixture lifecycles, and demonstrates how to optimize test execution using reusable setup logic—all while reducing redundant data initialization and improving CI/CD pipeline efficiency. Whether you’re running complex test suites or scaling your .NET testing strategy, this article helps you implement structured, scalable testing with xUnit.

The most interesting 4 new features of C# 13

https://cosmin-vladutu.medium.com/the-most-interesting-4-new-features-of-c-13-9edfe151bfa2

Explore the most impactful C# 13 features that boost developer productivity and simplify complex .NET applications—including scoped locks for thread safety, enhanced params collection support, partial properties for cleaner modularization, and a new escape sequence for ASCII control characters. This curated guide breaks down these C# 13 language updates with practical examples, making it a must-read for developers working with .NET 8, high-performance code, or modern asynchronous systems.

Using MySQL with Entity Framework

https://nodogmablog.bryanhogan.net/2025/02/using-mysql-with-entity-framework/

Learn how to integrate MySQL with Entity Framework Core in your .NET applications using a clean setup with Docker and the MySql.EntityFrameworkCore provider. This practical example walks you through creating a console app, configuring DbContext with a MySQL connection string, and seeding data—all while running MySQL securely in a local container. Whether you’re switching from SQL Server or exploring MySQL as part of your cross-platform development stack, this guide makes EF Core + MySQL integration quick and efficient.

.NET and MongoDB Project Integration with React Frontend & simple MongoDB tuning methods

https://medium.com/@joshi.vignesh/net-and-mongodb-project-integration-with-react-frontend-simple-mongodb-tuning-methods-0e95a7eca2c5

Discover how to build a high-performance full-stack application using .NET Core, MongoDB, and React by following this step-by-step integration guide. From configuring a robust ASP.NET Core Web API with the MongoDB.Driver to setting up a dynamic React frontend and optimizing MongoDB queries with indexing, pagination, projection, and aggregation pipelines, this tutorial empowers developers to create scalable and efficient applications. Perfect for those looking to implement real-world CRUD operations, RESTful API architecture, and database tuning best practices.

.NET 10 Preview 1 is now available!

https://devblogs.microsoft.com/dotnet/dotnet-10-preview-1/
https://devblogs.microsoft.com/dotnet/dotnet-10-preview-1/

Explore the latest innovations in .NET 10 Preview 1, featuring major enhancements across the .NET SDK, ASP.NET Core, Blazor, C# 14, Entity Framework Core, .NET MAUI, and more. From performance-boosting runtime improvements like AVX10.2 support and array stack allocation, to new developer productivity features like implicit span conversions, OpenAPI 3.1 support, and Blazor route highlighting, this release sets the stage for modern cross-platform development in 2025. Whether you’re building web, desktop, mobile, or cloud-native apps, this preview gives you early access to the future of .NET.

Profiling: An Essential Technique for Every Developer

https://medium.com/@engineer.fjvieira/profiling-an-essential-technique-for-every-developer-ae348e2892e6

Mastering application performance starts with profiling, a vital dynamic analysis technique often overlooked by developers. This article dives into essential code profiling tools for .NET, Java, Python, and C++, explaining how to detect memory leaks, optimize execution time, and improve application responsiveness. With tools like dotTrace, Visual Studio Profiler, JProfiler, and cProfile, developers can go beyond static analysis and gain real-world insights into their software’s behavior—boosting efficiency, reducing costs, and enhancing user experience.

.NET Like a Pro: 25 Tips to Enhance Your Productivity

https://medium.com/@Techrat/net-like-a-pro-25-tips-to-enhance-your-productivity-c9fd144a687e

Introduction

.NET Previews Unboxed – .NET 10 Preview 1, C# 14, HybridCache, & More

Understanding HybridCaching in .NET 9.0

https://www.csharp.com/Blogs/understanding-hybridcaching-in-net-90

Explore how Hybrid Caching in .NET 9.0 optimizes performance by combining in-memory (L1) and Redis-based distributed caching (L2) for scalable, low-latency web applications. This curated guide covers implementation using Microsoft.Extensions.Caching.Hybrid, tackles cache stampede prevention, and outlines best practices like eviction policies, cache expiration, and performance monitoring—empowering developers to build resilient, high-performance ASP.NET Core APIs with advanced caching architecture.

Understanding Bridge Design Pattern

https://www.c-sharpcorner.com/article/understanding-bridge-design-pattern/

Master the Bridge Design Pattern in C# with this detailed guide exploring how to decouple abstraction from implementation for scalable, maintainable code. Ideal for .NET developers working with object-oriented architecture, this curated article demonstrates real-world use cases using IMessageSender, dynamic message handling via SMS and Email, and bridges the gap between design pattern theory and application. Learn how to implement Bridge Pattern in .NET applications to support runtime flexibility, cleaner code architecture, and solid OOP principles like Dependency Inversion and Interface Segregation.

Azure SQL Database: Scalable & Secure Cloud Solution

https://www.csharp.com/article/azure-sql-database-scalable-secure-cloud-solution/

Looking to build scalable, secure, and fully managed database solutions with .NET? This curated guide on Azure SQL Database explains how to integrate it with C# applications using ADO.NET, implement performance tuning, ensure compliance with TDE, GDPR, and RBAC, and leverage cloud-native features like auto-scaling, geo-replication, and serverless compute tiers. Whether you’re migrating from SQL Server or starting fresh in the cloud, this article covers best practices for connection handling, query optimization, and cost-efficient architecture, helping your data-driven applications run seamlessly on Microsoft’s trusted DBaaS platform.

C#7 Discard (_): Get Rid of Unnecessary Variables!

https://medium.com/womenintechnology/c-7-discard-get-rid-of-unnecessary-variables-caa442871b16

Hello there! Once again, we are examining a feature of C#. In this article, we will examine the Discard feature, which is somewhat old and… Continue reading on Women in Technology »

Understanding MS Rules Engine — Nested Rules — Part 5

https://medium.com/@vamsidogiparthi/understanding-ms-rules-engine-nested-rules-part-5-36439b25291c

Master complex rule logic in .NET using MS Rules Engine’s Nested Rules with this practical guide that shows how to dynamically configure, evaluate, and optimize rule-based decisions using C# and JSON configurations. Learn how to implement business logic with logical operators (AND, OR) and control rule evaluation using NestedRuleExecutionMode, ideal for scalable scenarios like inventory management, pricing rules, or workflow automation. This deep dive includes a hands-on use case, sample JSON structure, and step-by-step code walkthrough, helping developers parse actions from the result tree and build intelligent systems without hardcoded if-else blocks.

ASP.NET Community Standup – HybridCache updates

.NET Aspire 9.1 is here with six great new dashboard features, and more! – .NET Blog

https://devblogs.microsoft.com/dotnet/dotnet-aspire-9-1/
https://devblogs.microsoft.com/dotnet/dotnet-aspire-9-1/

Explore the latest in cloud-native .NET development with the release of .NET Aspire 9.1, which introduces major dashboard enhancements like resource relationships, localization overrides, advanced filtering, and improved CORS support for custom local domains. This update also brings deeper Docker integration with PublishAsDockerfile(), refined console log control, and on-demand resource startup via WithExplicitStart(). Whether you’re streamlining microservices or monitoring hybrid app stacks, this release boosts developer productivity and infrastructure observability in .NET-native environments.

New Azure Cosmos DB Design Patterns Video Series – Learn, Implement, and Contribute!

https://devblogs.microsoft.com/cosmosdb/new-azure-cosmos-db-design-patterns-video-series-learn-implement-and-contribute/
https://devblogs.microsoft.com/cosmosdb/new-azure-cosmos-db-design-patterns-video-series-learn-implement-and-contribute/

Unlock the full potential of Azure Cosmos DB with Microsoft’s newly launched Design Patterns video series, showcasing practical NoSQL architecture strategies like Event Sourcing, Materialized Views, Attribute Arrays, and Distributed Counters. Whether you’re optimizing data models, managing schema evolution, or building high-throughput apps with Cosmos DB, this series equips developers with real-world code samples, performance tips, and GitHub-based resources to build scalable, modern applications using the Azure Cosmos DB for NoSQL platform. Perfect for architects and developers aiming to master distributed systems and advanced NoSQL design techniques.

Journey 1: RAG and Knowledge Retrieval Fundamentals

Mastering C# Automatically Implemented Properties: Simplify Your Code Like a Pro!

https://medium.com/@nagarajvela/mastering-c-automatically-implemented-properties-simplify-your-code-like-a-pro-4971961cf401

Leverage C# Auto-Properties for Cleaner, More Efficient Programming Continue reading on Towards Dev »

Subscribe to the .NET Newsletter and never miss another awesome article.

Leave a Reply

Your email address will not be published. Required fields are marked *