DotNetShoutout - Stories tagged with Inversion of control
5
Shouts

Inversion of Control Containers - Things Every Senior .NET Developer Should Know, Part 3

published 512 days, 6 hours, 5 minutes ago posted by Matt_TCFMatt_TCF 515 days, 12 hours, 29 minutes ago
Monday, December 26, 2011 8:15:27 AM GMT Friday, December 23, 2011 1:51:34 AM GMT
Think you're a senior developer? Not yet senior, but interested in taking the next step? Today’s topic in the "Things Every Senior .NET Developer Should Know" series will cover Dependency Injection, Inversion of Control containers, and my favorite Inversion of Control container, StructureMap. (more)
category: How To | clicked: 49 | 1 comment | | source: trycatchfail.com
tags: IoC, Inversion of control, Patterns, dependency injection, StructureMap
2
Shouts

Validating UnityContainer configuration

posted by http://byteflux.myopenid.com/http://byteflux.myopenid.com/ 594 days, 8 hours, 40 minutes ago
Wednesday, October 05, 2011 5:39:59 AM GMT
In one of my recent projects I have reached the need to validate that I have all dependencies correctly registered in my UnityContainer. For those that are not familiar with Unity, it is a dependency injection container that allows constructor, property and method call dependency injection. You can get more information about how Unity works and also download the latest release from Codeplex: http://unity.codeplex.com... (more)
category: How To | clicked: 13 | comment | | source: byteflux.me
tags: Unity, IoC, Validation, Inversion of control, C#, TDD, Test, dependency injection, DI
3
Shouts

Inversion of Control (IoC) and Dependency Injection (DI) and why they are important.

posted by ioannisioannis 711 days, 21 hours, 32 minutes ago
Thursday, June 09, 2011 4:48:42 PM GMT
In this blog post, we are going to see how and when  Dependency Injection (DI) and Inversion of Control(IoC) can be applied for writing nice and maintainable code. Note that although there are plenty of tools out there that give you the ability to apply DI out of the box, in this post we are going to implement such a tool on our own gaining valuable insight on the workings of IoC and DI. (more)
category: Architecture | clicked: 10 | comment | | source: www.progware.org
tags: Inversion of control, dependency injection
4
Shouts

Dependency Injection

published 812 days, 1 hour, 27 minutes ago posted by abhi2434abhi2434 814 days, 14 hours, 59 minutes ago
Tuesday, March 01, 2011 12:53:37 PM GMT Saturday, February 26, 2011 11:20:57 PM GMT
Well, after I introduced Inversion of Control with few simple examples in my previous post, I  thought it would be nice to take this discussion further with more implementation of Dependency Injection Principles. Later I would also take a look at some of the existing frameworks available with MS Patterns and Practices which follow these well known principles. If you remember my previous post on Inversion of control with interfaces, I have clearly stated that we could invert the control to some other modu... (more)
category: Architecture | clicked: 1 | comment | | source: www.abhisheksur.com
tags: Inversion of control, Design Pattern, Dependecy Injection
3
Shouts

Using Inversion of Control in MonoDroid Applications

published 866 days, 20 hours, 9 minutes ago posted by gshacklesgshackles 869 days, 1 hour, 39 minutes ago
Wednesday, January 05, 2011 6:11:52 PM GMT Monday, January 03, 2011 12:41:13 PM GMT
Just because a mobile application needs to be (or should be, in most cases) small and lightweight doesn’t mean we should set aside best practices like Inversion of Control containers when building our apps. With so many options out there for .NET containers, which ones should we use? In this article I’ll go over some good options I’ve found for using dependency injection in MonoDroid applications. (more)
category: Architecture | clicked: 12 | comment | | source: www.gregshackles.com
tags: Mono, IoC, Inversion of control, Funq, tinyioc, dependency injection, Android
7
Shouts

Munq is for web, Unity is for Enterprise

published 1100 days, 10 minutes ago posted by oazabiroazabir 1102 days, 3 hours, 16 minutes ago
Monday, May 17, 2010 2:10:19 PM GMT Saturday, May 15, 2010 11:04:25 AM GMT
The Unity Application Block (Unity) is a lightweight extensible dependency injection container with support for constructor, property, and method call injection. It’s a great library for facilitating Inversion of Control and the recent version supports AOP as well. However, when it comes to performance, it’s CPU hungry. In fact it’s so CPU hungry that it makes it impossible to make ... (more)
category: Web Dev | clicked: 6 | comment | | source: omaralzabir.com
tags: Unity, Munq, Inversion of control, Dependecy Injection, ASP.NET
5
Shouts

Inversion of Control – An Introduction with Examples in .NET

published 1148 days, 7 hours, 56 minutes ago posted by http://webpoet.myopenid.com/http://webpoet.myopenid.com/ 1149 days, 7 hours, 50 minutes ago
Tuesday, March 30, 2010 6:23:59 AM GMT Monday, March 29, 2010 6:30:40 AM GMT
By using Inversion of Control we are able to build more flexible and well designed applications. In this simple introduction I quickly describe, using examples in C#, what IoC is and how we can implement it using either Dependency Injection or Service Locator. (more)
category: Architecture | clicked: 4 | 2 comments | | source: joelabrahamsson.com
tags: IoC, .NET, Inversion of control, Dependecy Injection, DI, Architecture, Service Locator
6
Shouts

Announcing: TinyIoC – An Easy to Use, Hassle Free, Inversion of Control Container | GrumpyDev

published 1174 days, 22 hours, 46 minutes ago posted by http://www.grumpydev.com/http://www.grumpydev.com/ 1176 days, 7 hours, 19 minutes ago
Wednesday, March 03, 2010 3:34:31 PM GMT Tuesday, March 02, 2010 7:01:25 AM GMT
Announcing: TinyIoC – An Easy to Use, Hassle Free, Inversion of Control ContainerIntroduction Whenever I start a new “pet” project I usually want to use IoC, but I don’t really want the hassle of taking a dependency on a container, or adding another binary to my project. Usually this leaves me using “poor man’s IoC”, whereby I define dependencies in my constructors, but I pass them in manually or construct them using constructor chaining. I’ve thought for some time that it would be useful to put toge... (more)
category: How To | clicked: 2 | comment | | source: www.grumpydev.com
tags: IoC, Inversion of control, CSharp
8
Shouts

Model View Presenter pattern with Castle in ASP.NET

published 1191 days, 1 hour, 12 minutes ago posted by lenielleniel 1191 days, 8 hours, 48 minutes ago
Monday, February 15, 2010 1:08:43 PM GMT Monday, February 15, 2010 5:32:07 AM GMT
This post shows how to implement the Model View Presenter (MVP) pattern using Castle Project, which is an Inversion of Control Container framework. Employing Castle Project containers and ASP.NET it turns out to be a simple task to have a Web App that takes advantage of the MVP pattern. You'll see how to: use inversion of control (IoC), define a base presenter, define a base view, implement a view interface, implementing a view that inherits from the view interface, implement the presenter and put them t... (more)
category: Web Dev | clicked: 6 | 1 comment | | source: www.leniel.net
tags: IoC, Model-View-Presenter, Programming, Inversion of control, Design Pattern, C#, Castle Project, ASP.NET, MVP
11
Shouts

Quick Introduction to Dependency Injection

published 1264 days, 4 hours, 41 minutes ago posted by CygonCygon 1266 days, 4 hours, 31 minutes ago
Friday, December 04, 2009 9:39:23 AM GMT Wednesday, December 02, 2009 9:49:15 AM GMT
An easy to understand introduction to dependency injection in .NET using the Ninject inversion of control container. The dependency injection principle is a design concept by which classes and entire software components can be designed to be isolatable, reducing tight coupling, promoting reusability and allowing for unit tests to mock the dependencies of a class or component. (more)
category: Architecture | clicked: 3 | comment | | source: www.nuclex.org
tags: .NET, Inversion of control, Design Pattern, C#, dependency injection