Tag Archives: dependency injection

AutoMapper upgrade to v12

We use AutoMapper in almost all of our solutions. The recent new version forced us to finally refactor the way we used to resolve external dependencies. As you can read here (https://docs.automapper.org/en/latest/12.0-Upgrade-Guide.html) the ServiceCtor was removed. Nugets First we upgraded … Continue reading

Posted in Development | Tagged , | Leave a comment

Logging from Automapper

We’ve been using automapper to convert objects for some time. Now I have the need for logging to help bugtracking. Below a short list of sources how we set this up. And now you’ll need a serviceprovider when unittesting. Thank … Continue reading

Posted in Development | Tagged , , , | Leave a comment

MVVM light first look

For a side project I’m using WPF. This is where the company gets a product it needs and I learn something new. Since I’ve been mostly creating back-end and web based systems, my WPF knowledge is only theoretical. Time for … Continue reading

Posted in Development | Tagged , , , | Leave a comment

First look at Managed Extensibility Framework (MEF)

Microsoft’s solution for dependency injection is called Managed Extensibility Framework (MEF). Dennis presented about this on the Techdays 2015. Now it is time to look at this myself with a simple demo app. Demo app I’ve created a demo app … Continue reading

Posted in Development | Tagged , , , | 1 Comment