Sr. Content Developer at Microsoft, working remotely in PA, TechBash conference organizer, former Microsoft MVP, Husband, Dad and Geek.
147450 stories
·
32 followers

The .NET News Daily Issue #307

1 Share

&

The .NET News Daily Issue #307

Your Daily Dose of .NET Insights, Tools, and Trends

Welcome to Monday’s .NET dispatch, where fresh code awaits like a perfectly brewed cup of coffee. As seasoned builders of the digital realm, we know Mondays set the stage for innovation and opportunity. Today, we’re lining up a series of insightful reads, curated to kickstart your week with the perfect blend of knowledge and strategy. So, let’s fuel those neurons and keep the productivity engine roaring!

Help support our newsletter with a testimonial ❤

Today’s Articles

RESTful API Mastery: ASP.NET Core Best Practices, Versioning & Serialization Complete Guide – Part-10 of 40

https://www.c-sharpcorner.com/article/restful-api-mastery-asp-net-core-best-practices-versioning-serialization-com/

Master RESTful API development in ASP.NET Core with this comprehensive guide. Learn best practices for versioning, serialization, authentication, and building scalable services. Explore real-world exa…

Static Class vs Singleton Pattern 🔄

https://www.c-sharpcorner.com/article/static-class-vs-singleton-pattern/

Explore the nuances between Static Classes and the Singleton Pattern in C#. This article provides a detailed comparison, covering memory usage, performance, inheritance, thread safety, testing, and pr…

Why You Should Prefer `TryParse` Over Exceptions for Validation

https://medium.com/@kittikawin_ball/why-you-should-prefer-tryparse-over-exceptions-for-validation-919b8260f252?source=rss——csharp-5

Stop Using Exceptions for Control Flow — Discover why `TryParse` is a faster, safer, and cleaner way to validate input in .NET.

The .NET Monorepo Playbook: A Guide from the Trenches

https://medium.com/codex/the-net-monorepo-playbook-a-guide-from-the-trenches-bd1e15216b7f

Let’s talk about monorepos in .NET. For a long time, they felt like something reserved for the Googles of the world, but I’ve seen them… Continue reading on CodeX »

Building an AI Task Management Agent using Microsoft Agentic AI Framework

https://www.c-sharpcorner.com/article/building-an-ai-task-management-agent-using-microsoft-agentic-ai-framework/

Discover how to build intelligent AI agents using the Microsoft Agentic AI Framework and Azure OpenAI. This guide covers setting up Azure resources, deploying models like gpt-4o-mini, creating functio…

Design Patterns: The Legacy of the Gang of Four and Why It Still Matters

https://medium.com/@brunomagalhaespp/design-patterns-the-legacy-of-the-gang-of-four-and-why-it-still-matters-d1c89f7cbdca

When we talk about Design Patterns, it’s impossible not to mention the legendary Gang of Four (GoF). The group that forever changed how we…

FluentValidation for Busy .NET Devs

https://medium.com/@nidhiname/fluentvalidation-for-busy-net-devs-6e11f701f63a

If you’re still sprinkling if (model.Name == null) across controllers like fairy dust, your future self probably hates you a little…

6 Steps for Setting Up a New .NET Project the Right Way

https://www.milanjovanovic.tech/blog/6-steps-for-setting-up-a-new-dotnet-project-the-right-way

Learn how to properly set up a new .NET project with EditorConfig for code consistency, Directory.Build.props for centralized configuration, central package management, static code analysis, Docker Co…

Mastering C# Strings: Manipulation, Formatting, and Comparison

https://medium.com/@tpointtechblog/mastering-c-strings-manipulation-formatting-and-comparison-3010da55891a

When working with C#, one of the most frequently used data types is the string. Whether you’re building a console application, a web API…

7 No-BS Steps I Used to Add Distributed Caching to .NET 9 with Redis (with Copy-Paste Code)

https://medium.com/@michaelmaurice410/7-no-bs-steps-i-used-to-add-distributed-caching-to-net-9-with-redis-with-copy-paste-code-a2b584bb110e

If you want the full source code, join our community: Here

ASP.NET Core 2025 Beginner Guide Part 1 – Setup, First App & Real Examples

https://www.c-sharpcorner.com/article/asp-net-core-2025-beginner-guide-part-1-setup-first-app-real-examples-fre/

Embark on your ASP.NET Core 2025 journey with this comprehensive beginner’s guide! Learn to set up your environment, understand the architecture, and build your first web application and e-commerce AP…

Digging Deeper into .NET Aspire with Chris Klug

http://www.dotnetrocks.com/default.aspx?ShowNum=1972

Aspire has been around for almost two years. How do you use it effectively? Carl and Richard talk to Chris Klug about his experience with .NET Aspire. Chris discusses thinking cloud natively, whether …

The Better Way to Configure Entity Framework Core.

https://medium.com/@mariammaurice/the-better-way-to-configure-entity-framework-core-29d677399e6f

When you start a new .NET project, setting up Entity Framework Core (EF Core) seems easy — you just add your DbContext , connection string…

Stop Saying .NET is Verbose. Here’s Why It Beats Node.js in Simplicity.

https://medium.com/@lucafabbri84/smettetela-di-dire-che-net-è-verboso-vi-spiego-perché-batte-node-js-in-semplicità-2f03569a7151

For years, we’ve been hearing the same story: if you want a fast API with little code, you use Node.js, Python, or Go. If you need an…

What Is an Entity? | Domain-Driven Design, Clean Architecture, and .NET 9.

https://medium.com/@mariammaurice/what-is-an-entity-domain-driven-design-clean-architecture-and-net-9-ec49735eb9d7

When you first dive into Domain-Driven Design (DDD) and Clean Architecture, one of the first concepts you’ll encounter is the Entity.

C# 14: User-Defined Compound Assignment and Smarter Null-Conditional Assignment

https://medium.com/c-sharp-programming/c-14-user-defined-compound-assignment-and-smarter-null-conditional-assignment-bcc090f8b223

Write safer, more expressive C# 14 code with user-defined compound assignments and concise null-conditional assignments for custom types. Continue reading on .Net Programming »

Minimal APIs Revolution: ASP.NET Core Rapid API Development Guide & Examples : Part 9 of 40

https://www.c-sharpcorner.com/article/minimal-apis-revolution-asp-net-core-rapid-api-development-guide-examples-p/

Unlock rapid API development with ASP.NET Core Minimal APIs! This comprehensive guide, part of a 40-part series, covers everything from basic CRUD operations to advanced techniques like authentication…

The Truth About .NET Performance No One Talks About

https://medium.com/@nagarajvela/the-truth-about-net-performance-no-one-talks-about-dbdd18eecf8b

Uncover silent killers now. Continue reading on Let’s Code Future »

9-Minute Intro to Permission Authorization in .NET 9 (Part 1): The Smarter Upgrade from Roles

https://medium.com/@michaelmaurice410/9-minute-intro-to-permission-authorization-in-net-9-part-1-the-smarter-upgrade-from-roles-f5c6018a97df

If you want the full source code, join our community: Here

Connect Entra ID Logs to Microsoft Sentinal

https://www.c-sharpcorner.com/article/connect-entra-id-logs-to-microsoft-sentinal/

Secure your Microsoft environment by connecting Entra ID logs to Microsoft Sentinel. This integration provides real-time threat detection, automated incident response, and enriched investigations usin…

Asynchronous Streams in .NET (IAsyncEnumerable)

https://medium.com/@karthikns999/asynchronous-streams-in-net-iasyncenumerable-63d2a283b9b5

Efficient, readable, and modern asynchronous data handling

Repository Pattern 101

https://medium.com/@musaakoluk7/repository-pattern-101-8c8003da3fbd

Hayır, Repository Pattern’ı anlatmayacağım. Zaten hepimiz defalarca dinledik:

.Net 9 and Angular 20 fullstack CRUD app (Youtube tutorial)

https://ravindradevrani.medium.com/net-9-and-angular-20-fullstack-crud-app-youtube-tutorial-20039aa4584a

In this tutorial, you will learn how to create a fullstack application with .NET 9 and Angular 20. If you are interested, you can check it…

C# 12 Features Mastery Part 4 – Primary Constructors, Records, Pattern Matching for ASP.NET Core

https://www.c-sharpcorner.com/article/c-sharp-12-features-mastery-part-4-primary-constructors-records-pattern-matching/

Master C# 12’s essential features for ASP.NET Core development! Part 4 dives into primary constructors (reducing boilerplate), records (immutable data), advanced pattern matching (smarter code flow), …

Read the whole story
alvinashcraft
43 minutes ago
reply
Pennsylvania, USA
Share this story
Delete

Apple adds a new toggle to make Liquid Glass less glassy

1 Share

Apple’s latest iOS 26.1 beta has a new option that lets you tint Liquid Glass elements of iOS 26 so that they are more opaque. Since announcing Liquid Glass at WWDC this year, Apple has tweaked exactly how glassy Liquid Glass is — early on, there were some legibility issues — but this new setting gives you the choice of making things more transparent or more frosted.

The option is available now in the iOS 26.1 developer beta that Apple launched on Monday. You can access it from Settings > Display & Brightness > Liquid Glass, where you can choose between “Clear” and “Tinted.” The latest iPadOS 26.1 and macOS 26.1 developer betas also let you tint Liquid Glass, MacRumors reports.

Here’s a few image sliders showing how things look with the clear or tinted Liquid Glass. For each one, the screenshot on the left features the app with the “Clear” Liquid Glass option while the screenshot on the right uses the “Tinted” one. The differences are subtle, but I much prefer the Tinted versions.

The Liquid Glass menu in settings.
The Verge’s homepage.
The Apple TV app. Apple seems to still be rolling out the Apple TV rebranding.
The App Store.

The Liquid Glass toggle isn’t the only handy new option Apple added with the newest iOS 26.1 beta. The update also lets you turn off the ability to swipe to the camera from the lockscreen, which might prevent people who have your phone from taking pictures even if they can’t bypass your lockscreen. You can access the toggle from Settings > Camera > Lock Screen Swipe to Open Camera.

Read the whole story
alvinashcraft
2 hours ago
reply
Pennsylvania, USA
Share this story
Delete

Anthropic Claude Now Integrates with Microsoft 365

1 Share

Last month, we heard that Microsoft 365 may get new AI features powered by Anthropic Claude. Well, it's true. Sort of.

The post Anthropic Claude Now Integrates with Microsoft 365 appeared first on Thurrott.com.

Read the whole story
alvinashcraft
2 hours ago
reply
Pennsylvania, USA
Share this story
Delete

Microsoft Says Windows 11 Will Be AI-Native

1 Share

Microsoft today clarified how it intends to transform Windows 11 by moving AI from the background to the center of the experience.

The post Microsoft Says Windows 11 Will Be AI-Native appeared first on Thurrott.com.

Read the whole story
alvinashcraft
2 hours ago
reply
Pennsylvania, USA
Share this story
Delete

Node.js v22.21.0 (LTS)

1 Share
Read the whole story
alvinashcraft
2 hours ago
reply
Pennsylvania, USA
Share this story
Delete

New LightSwitch module in PowerToys and more! - Developer News 42/2025

1 Share
From: Noraa on Tech
Duration: 1:59
Views: 5

This Episode contains infos about #PowerToys 0.95 and some minor #GitHub news

00:00 Intro
00:12 Windows
01:12 Github
01:34 Other stuff

-----

Links

Windows
• PowerToys 0.95 is here: new Light Switch utility, faster Command Palette, and Peek with Spacebar - https://devblogs.microsoft.com/commandline/powertoys-0-95-is-here-new-light-switch-utility-faster-command-palette-and-peek-with-spacebar/?WT.mc_id=MVP_274787
• New experiences currently rolling out for Windows 11 - https://blogs.windows.com/windowsexperience/2025/10/16/new-experiences-currently-rolling-out-for-windows-11/?WT.mc_id=MVP_274787
GitHub
• Copilot-generated commit messages on github.com are generally available - https://github.blog/changelog/2025-10-15-copilot-generated-commit-messages-on-github-com-are-generally-available/
• Anthropic’s Claude Haiku 4.5 is in public preview for GitHub Copilot - https://github.blog/changelog/2025-10-15-anthropics-claude-haiku-4-5-is-in-public-preview-for-github-copilot/
• Grok Code Fast 1 is now generally available in GitHub Copilot - https://github.blog/changelog/2025-10-16-grok-code-fast-1-is-now-generally-available-in-github-copilot/
Other
• Announcing .NET 10 Release Candidate 2 - https://devblogs.microsoft.com/dotnet/dotnet-10-rc-2/?WT.mc_id=MVP_274787

-----

🐦X: https://x.com/theredcuber
🐙Github: https://github.com/noraa-junker
📃My website: https://noraajunker.ch

Read the whole story
alvinashcraft
2 hours ago
reply
Pennsylvania, USA
Share this story
Delete
Next Page of Stories