Compliance, gRPC, EF Core, and performance tips
This issue covers .NET compliance, EF Core configuration, gRPC vs REST, caching, feature flags, SQL Server, and practical performance advice.
Jasen's top three picks
- 1 From Chaos to Clean Code : A .NET Case Study on Code Reviews & Git Discipline
medium.com
A clean-code case study with Git discipline and code review habits that help teams stay sane as projects grow.
- 2 On .NET Live - Compliance in .NET: The Right Way to Classify & Redact Data
youtube.com
A practical compliance walkthrough in .NET, focused on classifying and redacting data the right way in real systems.
- 3 The Better Way to Configure Entity Framework Core
medium.com
A useful EF Core configuration guide for developers who want cleaner setup and fewer surprises in persistence code.
Editor's note
I kept the mix broad, with everything from compliance and data redaction to API design, SQL Server, and performance tuning. The gRPC vs REST comparison and the EF Core configuration piece both stand out because they solve decisions teams make every week. I also liked the feature flags and HybridCache articles for their practical, production-facing angle.
Today's articles
From Chaos to Clean Code : A .NET Case Study on Code Reviews & Git Discipline
medium.com
Welcome to the wild world of .NET development, where code reviews and version control save the day (and sometimes your sanity)! In this…
Topics: Clean Architecture GitHub
Read articleOn .NET Live - Compliance in .NET: The Right Way to Classify & Redact Data
youtube.com
Join us for a deep dive into **compliance in .NET** with special guests **Mariam Aziz** and **Darius Letterman**, two of the engineers behind the `Microsoft.Extensions.Compliance.Abstractions` and `Mi...
Read articleThe Better Way to Configure Entity Framework Core
medium.com
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
Topics: EF Core
Read article5 .NET Performance Tips to Make Your Apps Run Faster and Cleaner
blog.stackademic.com
Unlock hidden performance gains with easy-to-apply .NET coding best practices. Continue reading on Stackademic »
Topics: .NET Core Performance
Read articleBulk Inserts in .NET: Fast, Lock-Friendly with SqlBulkCopy
medium.com
Import millions of records in SQL Server with batching for maximum throughput and minimal locking.
Topics: Performance SQL Server
Read articleClean Code Approach in C#
medium.com
Clean code is a concept that emphasizes writing code that is easy to read, understand, and maintain. The principles of clean code can be…
Topics: C# Solid Principles
Read articleBuilding Your First High-Performance gRPC Server in C#-A Developer’s Complete Guide
medium.com
Modern applications demand speed, efficiency and seamless communication between distributed systems. While REST APIs have dominated the…
Topics: ASP.NET Core gRPC
Read articleAsync/Await Done Right in .NET for High-Throughput APIs
medium.com
Avoiding deadlocks and unlocking true concurrency in production-grade .NET services.
Topics: ASP.NET Core Performance
Read articleREST vs gRPC in .NET: Choosing the Right API Style for Your Backend
medium.com
Compare REST and gRPC in ASP.NET Core with examples.
Topics: ASP.NET Core gRPC REST API
Read articleLogs That Tell the Full Story: CallerMemberName, CallerLineNumber, CallerFilePath
medium.com
Let’s be real — debug logs are supposed to be our lifesavers, but half the time they read like: “Something broke. Figure it out, champ.” Continue reading on CodeToDeploy : The Tech Digest »
Read articleWhat Is GitHub Copilot and How Can It Boost Your Productivity?
c-sharpcorner.com
GitHub Copilot is an AI code completion tool that integrates directly into your development environment (IDE). It understands the context of the file you’re working on — including comments, variable n...
Topics: GitHub Copilot Visual Studio
Read articleTop 5 Performance Benefits of Backend Frameworks Golang and .NET
medium.com
Choosing a backend framework isn’t just a technical choice; it’s also a strategic one that has a direct effect on how well your app can…
Topics: .NET Core Performance
Read articleStruct vs Class in C# — Beginner-Friendly Deep Dive
malshikay.medium.com
Struct VS Class in C#
Read articleRazor Pages vs MVC in ASP.NET Core — Strategic Selection 2025
blog.yaseerarafat.com
In 2025, choosing between Razor Pages and MVC in ASP.NET Core is more than a preference — it’s a strategic decision that affects…
Topics: ASP.NET Core ASP.NET MVC
Read articleBuild Master-Detail Pages in ASP.NET Core MVC — Part 1
bipinjoshi.net
Master-detail pages are a staple in many web applications, offering a structured way to display and manage related data. Developers can implement these pages using various approaches—server-side, clie...
Topics: ASP.NET Core ASP.NET MVC
Read articleMastering Common Table Expressions (CTEs) in SQL Server
c-sharpcorner.com
This article explains SQL Server Common Table Expressions (CTEs), covering benefits, performance, best practices, and real-world examples, helping developers simplify complex queries, improve readabil...
Topics: SQL Server
Read articleA Beginner’s Guide to [HttpGet], [Route], and [ApiController] in ASP.NET Core
medium.com
When I first started working with ASP.NET Core, I saw controller methods that were decorated with [HttpGet], [Route], [FromBody], and…
Topics: ASP.NET Core REST API
Read articleSQL Server CLR Integration: Development, Deployment, Security, Architecture, Patterns, and Real-World Use Cases
c-sharpcorner.com
Explore SQL Server CLR Integration’s power to bridge .NET and relational databases. Learn best practices, security, and real-world use cases to build scalable, secure, high-performance data-driven app...
Topics: .NET Framework SQL Server
Read article25 Tools to Help You Manage Hybrid No-Code And Custom Code Stack
faciletechnolab.com
Discover 25 powerful tools for founders and teams managing hybrid no-code + custom code applications. Streamline workflows, boost scalability, and improve collaboration.
Read articleFeature flags in .NET with IFeatureManager
medium.com
IFeatureManager from the Microsoft.FeatureManagement package manages feature flags in .NET.
Topics: Azure Performance
Read article.NET : Build your own HybridCache!
medium.com
Mastering MCP Integration: Build AI-Powered Database Tools with .NET
Topics: ASP.NET Core Performance
Read articleMastering API Pagination Methodology with the Microsoft Stack
c-sharpcorner.com
This comprehensive guide covers API pagination in ASP.NET Core, explaining methods like offset, cursor, token, and time-based pagination, plus best practices, performance tips, and real-world use case...
Topics: ASP.NET Core Performance
Read article