Satish Yadavread.satishyadav.com·Dec 18, 2024What's New in ASP.NET Core 9.0← Previous: What’s New in EF Core 9 ASP.NET Core 9.0 streamlines delivering static assets, enhances Blazor development workflows, expands built-in OpenAPI capabilities, improves SignalR tracing and AOT support, and refines authentication and author...28 readsWhat's New in .NET 9.NET
Rickclean-code.dev·Dec 18, 2024Domain-Driven Design Error Handling Using Result PatternIntroduction When implementing Domain-Driven Design (DDD), one of the most challenging aspects is handling domain errors effectively. While traditionally, the approach has been to throw exceptions from the domain layer, this article presents a more e...48 readsDDD
Nishant Banjadeblog.nishantbanjade.com.np·Dec 17, 2024Mastering C# Part 7.3 Object Oriented ProgrammingInterfaces in C# An interface in C# is a contract that defines a set of methods, properties, events, or indexers that a class or struct must implement. Unlike classes, interfaces do not provide any implementation for their members; they only declare ...27 readsC#
Joshua Akosadevwithjosh.com·Dec 5, 2024Building a Low-Latency gRPC Service for Real-Time Inter-Microservice Communication in C# and ASP.NET CoreIn modern distributed systems, low-latency communication is crucial for maintaining performance and responsiveness, especially in microservice architectures. This blog demonstrates how to use gRPC in C# and ASP.NET Core to achieve low-latency inter-m...167 readsMastering gRPC with C# and ASP.NET CoregRPC
Joshua Akosadevwithjosh.com·Dec 5, 2024Introduction To gRPC in C# and ASP.NET CoregRPC (gRPC Remote Procedure Call) is a modern open-source RPC framework that can run in any environment. It uses HTTP/2 for transport, Protocol Buffers (Protobuf) for defining APIs, and provides features like bi-directional streaming, client-server c...84 readsMastering gRPC with C# and ASP.NET CoregRPC
Rajasekarrajasekar.dev·Dec 5, 2024Implement Real-Time Communication Using SignalR with AngularBy default, a webpage works in request and response mode. The client sends a request to the server and receives the response. What if the data changed dynamically in the server, let’s say by some other user and the client application should show the ...29 readsasp.net core
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 3, 2024Road Map to Dot Net Core (Detailed)Level Up Your .NET Core Skills: A Comprehensive Roadmap Master the Fundamentals 📚: C# Fundamentals 🦸♂️: Syntax and Data Types 🔢 Object-Oriented Programming (OOP) 🏗️: Classes, Inheritance 🧬, Polymorphism 🎭, Encapsulation 🔒, Abstraction ☁️ ...C#
Ugo Umeokeeurocode.hashnode.dev·Nov 29, 2024Quick Guide to Identity Endpoints in .NET 8+Identity management is a critical aspect of modern web applications, providing the infrastructure necessary for managing users, roles, authentication, and authorization. With .NET 8, Microsoft has further streamlined the process by introducing enhanc...C#
Vujustvu.hashnode.dev·Nov 28, 2024Solving Local API Issues for Flutter on iPhoneWhen testing your Flutter app on an iPhone, you might encounter a common issue: the app cannot call a locally hosted API. This happens because localhost refers to the device running the app (your iPhone) rather than your computer where the API is hos...Flutter
shaid hussainhowtodotnetapi.hashnode.dev·Nov 27, 2024Building and Testing a .NET API: A Step-by-Step GuideIn this blog, I will show you how to create a .NET API, host it locally using Docker, and integrate it with a web application. We'll use Visual Studio Code as our primary development environment. This guide includes everything from setting up the env...how to create .net API