Explore >> Select a destination


You are here

www.fearofoblivion.com
| | wrapt.dev
2.9 parsecs away

Travel
| | Let's make our integration tests more reliable by dynamically spinning up a database in Docker that mimics production and makes your project easy to test on any dev box.
| | www.code4it.dev
2.6 parsecs away

Travel
| | Code4IT - a blog for .NET enthusiasts, Azure lovers, and Backend developers
| | gist.github.com
2.9 parsecs away

Travel
| | Minimal APIs at a glance. GitHub Gist: instantly share code, notes, and snippets.
| | sookocheff.com
22.1 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: