Joshua Akosadevwithjosh.com·8 minutes agoBuilding 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...DiscussMastering gRPC with C# and ASP.NET CoregRPC
Joshua Akosadevwithjosh.com·14 minutes agoIntroduction 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...DiscussMastering gRPC with C# and ASP.NET CoregRPC
Rajasekarrajasekar.dev·7 hours agoImplement 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 ...Discussasp.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 ☁️ ...DiscussC#
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...DiscussC#
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...DiscussFlutter
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...Discusshow to create .net API
syncfusionsyncfusion-blogs.hashnode.dev·Nov 26, 2024How to Implement Passkey in ASP.NET Core with Fido2-net-lib?TL;DR: Discover how to implement Passkey authentication in your ASP.NET Core app using the Fido2-net-lib library. Enhance security with a passwordless, phishing-resistant method that leverages public-key cryptography. In today’s digital landscape, en...Discussasp.net core
Milan Jovanovićmilanjovanovic.hashnode.dev·Nov 23, 2024Building Async APIs in ASP.NET Core - The Right WayMost APIs follow a simple pattern. The client sends a request. The server does some work. The server sends back a response. This works well for fast operations like fetching data or simple updates. But what about operations that take longer? Think ab...Discuss·111 readsAPIs
Joshua Akosadevwithjosh.com·Nov 16, 2024Clean Architecture in C#: Building Maintainable and Scalable ApplicationsSoftware architecture is the backbone of any application, and a well-thought-out architecture can make the difference between a maintainable, scalable application and a fragile, difficult-to-modify one. Clean Architecture, popularized by Robert C. Ma...DiscussClean Architecture