Enjoying the newsletter? Your feedback helps us grow and reach more developers.

Share your testimonial →

Today's Articles

Build Real-Time Pub/Sub Messaging with MQTT, EMQX, .NET, and Angular

https://mirzaleka.medium.com/build-real-time-pub-sub-messaging-with-mqtt-emqx-net-and-angular-6219bd1d9e2b?source=rss------dotnet-5

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…

MCP Server with .Net

https://antoniodimotta.medium.com/mcp-server-with-net-53712c1a0951?source=rss------dotnet-5

With the release 1.0 of the official ModelContextProtocol .Net SDK, we are ready to make a MCP Server fully compliant with MCP specs and…

Setup Serilog For .NET Core

https://www.trevoirwilliams.com/setup-serilog-for-net-core/

When unexpected events occur, tracing the root cause can become incredibly difficult. Imagine an error happening, and you only hear about it minutes or even seconds later. Without proper logging, pinp...

GitHub Actions for .NET: Build, Test, and Deploy Your API

https://medium.com/@adrianbailador/github-actions-for-net-build-test-and-deploy-your-api-e1109906497f?source=rss------dotnet-5

A complete CI/CD pipeline from zero — automated builds, test coverage, Docker images tagged by commit SHA, and deployment to Azure with a…

How to Design a Multi-Tenant SaaS Platform on Microsoft Azure

https://feedly.com/i/entry/y5pFedovy8htu1CQgVVMFj13rAEs5ODNrtRorfFcevc=_19d0f356d21:5056d1a:7160cb8

A practical guide to designing a secure, scalable multi-tenant SaaS architecture on Microsoft Azure, covering tenancy models, data isolation, Azure services, and real-world architectural consideration...

Extend Your Coding Agent with .NET Skills: A New Way to Supercharge AI-Assisted Development

https://blog.gopenai.com/extend-your-coding-agent-with-net-skills-a-new-way-to-supercharge-ai-assisted-development-cc5b5a66c7e0?source=rss------dotnet-5

AI coding assistants are becoming a normal part of a developer’s workflow. Tools like GitHub Copilot, ChatGPT-based agents, and other AI… Continue reading on GoPenAI »

Return Types in ASP.NET MVC

https://www.c-sharpcorner.com/blogs/return-types-in-asp-net-mvc2

Master ASP.NET MVC return types! Learn about ActionResult, ViewResult, JsonResult, FileResult, and more with practical examples. Build better web applications!

Installing .NET on Windows Without Admin Privileges

https://nodogmablog.bryanhogan.net/2026/03/installing-net-on-windows-without-admin-privileges/

I was chatting to a friend a few weeks ago when he told me that he couldn’t install .NET on a Windows computer where he doesn’t have admin access. When he tried to run the MSI installation files, he w...

How Model Binding Works in ASP.NET MVC

https://www.c-sharpcorner.com/blogs/how-model-binding-works-in-asp-net-mvc

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!

Mastering LINQ Query Optimization in ASP.NET Core: A Complete Developer’s Guide

https://medium.com/@Rajdip27/mastering-linq-query-optimization-in-asp-net-core-a-complete-developers-guide-d72410daa985?source=rss------csharp-5

Introduction

Keep Reading