Tagged Questions

1
vote
2answers
36 views

How to Inject Open Connections with an IoC

First, my scenario. I have a service, BillingService, has a constructor like this: BillingService(IInstallmentService, IBillingRepository) The InstallmentService has a construct …
2
votes
2answers
61 views

Dependency injection: injecting user control in aspx page

I need to build a 'customizable' asp.net web application (not asp.net mvc). I was thinking to use an IoC container to inject user control into aspx pages. Has anybody ever tried …
0
votes
0answers
20 views

Dependency injection into custom ViewPage generates wierd error

i'm trying to inject stuff into a custom ViewPage (ModelViewPage, from MvcContrib) public class ValidatedModelViewPage<T> : ModelViewPage<T> where T : class { …
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 …
6
votes
3answers
76 views

IoC Containers and Domain Driven Design

I've been searching for guidance for using IoC containers in domain driven design. Evan's book unfortunately doesn't touch on the subject. The only substantial guidelines I could f …
0
votes
2answers
47 views

array dependency injection in spring?

Hi, is there a way to use dependency injection to inject all available implementations of a specific interface in spring? This is kind of the same thing as asked here for .NET. …
-1
votes
1answer
25 views

Using the Ninject kernel as a Unit of Work object factory.

So I'm starting to use Ninject for dependency injection and I'm wondering what people think of using a kernel as an object factory for Unit of Work type objects like Linq2Sql Datac …
0
votes
1answer
49 views

Castle Windsor: Problem with Multiple Constructors

Hello stackoverflow! Long-time reader first time writer here. I am currently undertaking a conversion from to the use of Ninject to the current release of Castle Windsor for a sim …
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 …
2
votes
6answers
78 views

Dependency Inject Sql Connection?

Firstly, I'm starting to use StructureMap, but an example in any DI framework will do. I have a class as so, public class GeoData { public List<Country> GetCountries() …
0
votes
2answers
43 views

Getting Unity to Resolve views in XAML

I'm starting out with MVVM, and I'm starting to understand things. I'm currently experimenting with the Cinch framework, though I'm not committed to it as of yet. I was injecting t …
0
votes
1answer
35 views

Unity constructors

I have setup unity in my project and it is working for objects that don't have constructor injection implemented on them. The issue is now I do have an object which requires a cus …
2
votes
7answers
156 views

Creating an AntiForgeryToken through Dependency Injection

I'm working on improving the security of my company's website and wanted to create a token to prevent forgery attempts that could be easily maintained this is what I came up with. …
4
votes
2answers
86 views

Dependency Injection - Who owns the Interface?

Assuming I want to use a dependency injection framework in an AOP approach, with the goal of producing code modules. What's the best practice for the ownership of the shared inter …
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 …

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