Quick Introduction To Default Interface Methods In C#
In this article, let's have a look at the default interface methods feature which has been added in C# 8. Scenario of Evolving Interfaces Let's take a scenario to understand…
In this article, let's have a look at the default interface methods feature which has been added in C# 8. Scenario of Evolving Interfaces Let's take a scenario to understand…
This article discusses about what is delayed instantiation and how it can be used with .NET's default IoC container and Autofac. Delayed Instantiation ? The dependency injection in .NET allows…
We know that .NET has its own built-in IoC container. When you create web applications, the project templates include the defautl IoC container so that you can focus on your…
Dependency injection is first class citizen in .NET. We already have seen how to enable default IoC container in a console application in previous post. Autofac is also one of…
Dependency Injection in .NET: Demo of service lifetimes
SOLID principles are core software design principles, intended to make software design more understandable and maintainable. Every letter stands for a concept and below is the list of five concepts:…
In the previous blog post, we have seen how can we use MSAL.NET with .NET Core web applications. Many applications use Single Page applications as front end which call web…
Now a days, all the functionalities available in your business applications are required to be available everywhere. Everybody wants the application to be available at their finger tips. Your customers…
In last article, we have seen how to add ASP .NET Core identity to your web API project. In this blog post, let's see how to setup your web API…
A web job is very useful for running the background jobs required for applications. We already have seen what is a web job and how can we create it in…
In previous article, we have seen how to create an organization, a project and a repository for the project. The repository is empty when we created it. We also have…
I have written a blog post about EF core few months back. Today, I was trying to setup a sample .NET Core 3 application with EF Core. I found that…