Writing Integration Tests using xUnit
Published: 07 June 2021
Writing testable code is the norm these days, and writing tests for the components developed is a desired skill.
Category: Fundamentals | Tags:
Published: 07 June 2021
Writing testable code is the norm these days, and writing tests for the components developed is a desired skill.
Category: Fundamentals | Tags:
Published: 16 April 2021
This will show you how to customize the logging. The default logging only writes to the console or to the debug window. This is quite good for the most cases, but maybe you need to log to a sink like a file or a database. Maybe you want to extend the logger with additional information.
Category: Fundamentals
Published: 28 November 2020
This part is about a feature you can use to create background services to run tasks asynchronously inside your application. Actually I use this feature to regularly fetch data from a remote service in a small ASP.NET Core application.
Category: Fundamentals
Published: 27 October 2020
In this article we will learn how to generate fresh JWT secured token in ASP.NET Core with simple easy to understand examples.
Category: Fundamentals | Tags:
Published: 02 September 2020
One of the new features of ASP.NET Core 2.2 is support for hosting ASP.NET Core Web App with IIS using in-process or out-of-process hosting model.
Category: Fundamentals | Tags:
Published: 25 August 2020
In this post I 'm going to talk about a few gotchas with the .NET Core's built-in inversion of control (IoC) / service provider (SP)/dependency injection (DI) library.
Category: Fundamentals
Published: 12 April 2019
This article covers pretty much all the important things about localization in ASP.NET Core and MVC Core.
Category: Fundamentals
Published: 31 January 2019
How to use it and how to customize the configuration to use different ways to configure your app.
Category: Fundamentals
Published: 24 November 2018
The options pattern uses classes to represent groups of related settings.
Category: Fundamentals
Published: 12 October 2018
In this tutorial we'll go through a simple example of how to implement Basic HTTP authentication in an ASP.NET Core 2.1 API with C#.
Category: Fundamentals