Tagged Questions

0
votes
0answers
37 views

How do I implement a delegate factory?

The documentation for Autofac has an interesting page describing its ability to automatically generate delegate factories. It also strongly suggests that you can get similar result …
0
votes
0answers
20 views

Singleton per while loop in Unity

I have a loop that looks something like this. Not real code, just an example: while (true) { IJobService jobService = ServiceLocator.Resolve<IJobService>(); jo …
1
vote
2answers
47 views

Where should I store a reference to my DI container?

I'm wondering how I should store/reference my dependency injection container(s). Is it alright to have a container be a static property on a static class? Or should I have the cont …
0
votes
3answers
43 views

IOC with multiple databases that use same interface (StructureMap or any other DI Framework)

We've been experimenting with StructureMap, and I'm having trouble grasping how to handle situations where a single interface has multiple implementations. The code below shows an …
3
votes
3answers
38 views

Abstractions should not depend upon details. Details should depend upon abstractions ?

In past couple of days, I have read about quite a lot about dependency injection/inversion of control/inversion of dependency. I think that, now my understanding of the concept is …
2
votes
3answers
53 views

ASP.NET MVP Injecting Service Dependency

I have an ASP.NET page that implements my view and creates the presenter in the page constuctor. Phil Haack's post providing was used as the starting point, and I'll just the exam …
119
votes
20answers
9k views

Why do I need an IoC container as opposed to straightforward DI code?

I've been using Dependency Injection (DI) for awhile, injecting either in a constructor, property, or method. I've never felt a need to use an IoC container. However, the more I …
1
vote
2answers
19 views

Unity Container Disposing and XML Web Service

Hi, I am registering some wrapers over un-managed objects in container. How can I dispose of them at the end of the container's lifetime? Please bear in mind I have an XML Web serv …
1
vote
2answers
43 views

What is the best strategy for Dependency Injection of User Input?

I've used a fair amount of dependency injection, but I'd like to get input on how to handle information from the user at runtime. I have a class that connects to a com port. I all …
0
votes
1answer
76 views

Why is this method call not getting intercepted?

Why doesn't DoIt() method call get intercepted? Should I use something other than InterfaceInterceptor to intercept the DoIt() method? How would you do it? using System; using Mic …
1
vote
2answers
101 views

Events in an Inversion of Control (Dependency Inversion) system go which way?

Up or Down? I'm a very visual person. I'm thinking of my application as a hierarchy, where the top is the root and the bottom is a leaf. I'm also under the understanding that IoC …
9
votes
13answers
410 views

Dependency injection through constructors or property setters?

Hi, I hope this isn't a duplicate. I did a search but there are a lot of dependency injection posts and I couldn't find any needles in the haystack. So here's my question. I'm ref …
0
votes
4answers
74 views

Spring Philosophy

Everytime I ask anyone what is Spring Framework or what does it do ?, they simply say me, you remember that Hollywood Principle right "Don't Call me, I will Call you", that's exact …
4
votes
5answers
109 views

Mocking without IoC or Dependency Injection

Hi All, Is there a way to use mocks or fakes in your unit tests without having to use dependency injection or inversion or control? I found this syntax can be used with TypeMock …
0
votes
0answers
80 views

Repository pattern with Linq to SQL using IoC, Dependency Injection, Unit of Work

There seems to be lots of examples on implementing Repository pattern for Linq to SQL. Most of them featuring IRepository and DI; Some have implemented Unit of Work and some not. I …

1 2 3 4 5 24 next
15 30 50 per page