
Azure Functions with Dependency Injection
Azure Functions got some improvements in the last months. Now it’s no longer necessary to create static methods, instance methods … Continue reading Azure Functions with Dependency Injection
Azure Functions got some improvements in the last months. Now it’s no longer necessary to create static methods, instance methods … Continue reading Azure Functions with Dependency Injection
With my blog I’ve several articles about dependency injection using Microsoft.Extensions.DependencyInjection. Now I’ve updated the source code of my older … Continue reading Dependency Injection code samples updated
At an MVVM workshop a question was asked how tabs can be opened dynamically within a tab control – using … Continue reading Open Tab Items Dynamically with WPF
For easier unit testing, Entity Framework Core offers a memory-based povider. You can use the same context you use with … Continue reading Entity Framework Core – Unit Testing
.NET Core uses dependency injection (DI) intensively, and thus a dependency injection framework is part of its core with Microsoft.Extensions.DependencyInjection. … Continue reading .NET Core Dependency Injection with Configuration
With a service that should be injected via dependency injection, but needs some configuration, .NET Core offers a mechanism to … Continue reading .NET Core Dependency Injection with Options
My ASP.NET Core 1.0 presentation and code samples for download Continue reading Build 2016 Event in Vienna
Dependency injection is built-in with .NET Core. Microsoft.Extensions.DependencyInjection is a framework that is an essential part for ASP.NET Core, but can be used with other application types such as console applications, WPF, UWP, and Xamarin as well. This article shows the core functionality of this new framework using a simple console application.
Continue reading Dependency Injection with .NET Core