Eduardedkorenkov.hashnode.dev·Nov 23, 2023Yet Another Way to Use ASP.NET Core HttpClientIntroduction During my day-to-day work, especially with Microservices or integrating third-party services, it is very common thing for me to deal with web requests. But, unfortunately, I usually see a lot of old style approaches to send requests or a...Discuss·105 readsdotnetcore
akhil kvakhil36.hashnode.dev·Nov 12, 2023How to Build a CRUD API with .NET Minimal APIs and SwaggerDeveloping a well-documented CRUD API in .NET just got easier with Minimal APIs and Swagger. In this guide, learn how to build a fast, lightweight CRUD API and generate interactive API docs using these new .NET tools. Why Build CRUD APIs with .NET Mi...Discuss·1 like.NET
Lens Mutombolenscorpx.hashnode.dev·Oct 17, 2023Unlocking the Potential of Web APIs: A Deep Dive into .NET Core, GraphQL, Authentication, and CachingIntroduction GraphQL is a query language for APIs that allows clients to request the exact data they need. It is a powerful tool that can be used to create flexible and efficient APIs. Authentication is the process of verifying the identity of a user...Discuss·6 likes·29 readsGraphQL
Akshay Phadkeakshayaphadke.hashnode.dev·Oct 16, 2023Containerization of the .NET Core 7 Web API using Docker on AWS EC2(UBUNTU)Agenda · What is Docker? · Why use Docker? · Benefits of Docker · Step-by-step implementation of the .NET Core Web API · Containerization of Applications Prerequisites · Visual Studio 2022 · Docker Desktop · .NET Core 7 SDK What is Docker? · Docker i...Discuss.NETArticlesDocker
Prasenjit Pawartechiee.hashnode.dev·Oct 11, 2023Effortless Object Nesting with Dapper's splitOn PropertyIn C# application development, retrieving data from relational databases and mapping it to object hierarchies is a common task. Dapper, a popular micro-ORM (Object-Relational Mapping) library, streamlines this process and provides a powerful feature ...DiscussC#
ajay chaudharyajaychaudhary.hashnode.dev·Oct 11, 2023Logging in .NET Core APIs using Serilog: A Comprehensive GuideLogging is a critical aspect of software development, providing developers with essential insights into the behavior of their applications. In the context of .NET Core APIs, robust logging mechanisms are indispensable for diagnosing issues, monitorin...Discuss·87 reads.NET
Geo J Thachankarygeothachankary.hashnode.dev·Oct 7, 2023Unit Testing in .NET Core - Mastering MockingThis is the fifth post in our Unit Testing in .NET Core series! In the previous post, we looked at writing better assertions in our unit tests. In this post, we will explore the concept of mocking in unit testing using xUnit, discuss different types ...DiscussUnit Testing in .NET Core.net core
Akshay Phadkeakshayaphadke.hashnode.dev·Oct 4, 2023Containerize the .NET Core 7 Console Application using DockerPrerequisites · Visual Studio 2022 · Docker Desktop · .NET Core 7 SDK Table of Content · What is Docker? · Why use Docker? · Benefits of Docker · Step-by-step implementation of the .NET Core Console Application · Containerization of Applications Wha...Discuss·3 likes·197 reads.NETArticles.NET
Geo J Thachankarygeothachankary.hashnode.dev·Oct 1, 2023Unit Testing in .NET Core - Better Assertions with FluentAssertions and ShouldlyThis is the fourth post in our Unit Testing in .NET Core series! In the previous post, we looked at parameterized unit testing. In this blog post, we will explore how to enhance your assertion capabilities in .NET Core unit testing, using the xUnit t...DiscussUnit Testing in .NET Coreunit testing
Alexandru Prodancodecraftsymphony.com·Sep 30, 2023You Use the HttpClient WrongIntroduction This article explains how to properly send HTTP requests in C#. It emphasizes the drawbacks of using the HttpClient directly, as well as the advantages of using the IHttpClientFactory. Also, it shows 3 ways to use the IHttpClientFactory ...Discuss·40 readshttpclient