
Book Review: Apps and Services with .NET 8
This is an in-depth review article on book: Apps and Services in .NET 8 by Mark J. Price: A book for Intermediate .NET Developers Presenting to you this book to …
Read MoreLearn. Code. Listen
This is an in-depth review article on book: Apps and Services in .NET 8 by Mark J. Price: A book for Intermediate .NET Developers Presenting to you this book to …
Read MorePattern matching in C# is a feature used to test expressions for some conditions while testing their types. Generally, Pattern matching is a functional programming feature that already exists in …
Read MoreIn this article we will get introduced to 12 Shorthand Operators in C# Every Developer Should Know About, these operators are widely used in all projects. Of course there are …
Read MoreSwagger can help you document your APIs by representing your API definition in a JSON format, which is called the OpenAPI Specification document, OpenAPI was originally part of Swagger project …
Read MoreIn this tutorial we will learn how to build RESTful APIs using ASP.NET Core. The APIs will be connected to an SQL Server Express Database Instance using Entity Framework Core.
We will be building RESTful APIs for Movies Database; the APIs will be responsible to connect to the database and get/save/update/delete records to and from the database and return the results back to the client.
Read MoreYou can easily secure ASP.NET Core Web API using API Key Authentication, it is just a matter of doing few steps and you will be able to secure your endpoints. …
Read MoreIn this tutorial you will learn how to secure ASP.NET Core Web API using JWT Authentication in .NET 5, I will try to simplify this topic step-by-step while coding. We …
Read MoreExplaining 3 ways to dump object in c# , including the Object Dumper, Json Serializer and Yaml Serializer
Read MoreException handling is a very important topic that is sometimes not properly understood or less used. In this article, I will explain to you about the Exceptions, and how to …
Read MoreYou might have already heard about asynchronous programming or async / await, either in .Net or some other language. In this article I will try to explain it to you, …
Read More