/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.code4it.dev
| | sookocheff.com
4.7 parsecs away

Travel
| | Inversion of Control (IoC), also known as Dependency Injection (DI), allows an object to define their dependencies as constructor arguments (strictly speaking, you can set these dependencies as properties, but the examples I will use today are constructor-based). This is the inverse of the object itself controlling the instantiation or location of its dependencies, hence the name Inversion of Control. Let's look at an example from Stackoverflow using a text editor with a spell checking component:
| | nodogmablog.bryanhogan.net
2.6 parsecs away

Travel
| | Full source code available here. Over the past couple of years I wrote a few posts about Dependency Injection in .Net Core 2.1, and this week I received comments from a reader telling me that some of the changes in .
| | www.nexsoftsys.com
1.9 parsecs away

Travel
| | In this article, let's take a deep dive to Dependency Injection mechanism of .NET Core 3.1 to achieve Inversion of Control (IoC) between classes and their dependencies.
| | gregorsuttie.com
17.6 parsecs away

Travel
| There are many ways to pass variables into an Azure Function. In this quick blog post I will show you how you can test the Azure Function locally with local settings and then use app settings from the Azure Portal and then also use values stored within Azure KeyVault incase we need to store and...