1
vote
2answers
39 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
4answers
60 views
Should I encapsulate my IoC container?
I'm trying to decide whether or not it makes sense to go through the extra effort to encapsulate my IoC container. Experience tells me that I should put a layer of encapsulation b …
0
votes
1answer
40 views
Is it right to use IoC for the extensibility of my entities or domain model?
Hi Everyone,
I've came across a dilemma which I think is worth discussing here.
I have a set of domain objects (you can also call them entities, if you like), which get some data …
0
votes
2answers
42 views
IoC container object scoping
I am interested in implementing an IoC container in my project but I haven't seen an example out there that does what I need.
Here is the situation, my application is built in WPF …
1
vote
1answer
103 views
Spring’s IOC with annotations is confusing for a Guice guy. Help to enlighten me
I came into IOC via Google Guice.
And now I've been forced to use Spring 2.5.6 at work & I am lost because Spring is quite complicated. Here are some questions after reading b …
0
votes
0answers
12 views
Does MS PnP Unity Scan for Assemblies Like StructureMap?
In Using StructureMap 2.5 to scan all assemblies in a folder, we can see that StructureMap uses AssembliesFromPath() to explicitly look for types to resolve. What is the equivalent …
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
0answers
21 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
3answers
43 views
Project Windsor - Repository Extending DataContext
Before I begin I will say this: I have to extend DataContext in my repository because I'm calling stored procedures and ExecuteMethodCall is only available internally. Many people …
3
votes
2answers
85 views
Strategy Pattern and Dependency Injection using Unity
I am finally getting my feet wet with Dependency Injection (long overdue); I got started playing with Unity and run into an issue with the strategy pattern. I can use the container …
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
3answers
58 views
UNITY: passing in a new datacontext each time?
Hi there,
I am trying to use unity to automatically inject a datacontext on my repository using a new instance each time.., my idea is the ensure that each time a new datacontext …
1
vote
2answers
48 views
Spring.Net IoC: alternative to using configuration medadata XML
I'm trying to get a grasp of using spring.net ioc to suit my purpose.
What options to using xml configuration (metadata file) are available in spring.net ioc. i.e. i don't want to …
1
vote
2answers
43 views
Using IoC to resolve dynamically loaded types
I've written a program using Domain Driven Design in .NET 2.0 and I'm trying to implement a plugin framework for it.
I've implemented several types of plugins:
Domain Plugin
A …
0
votes
1answer
66 views
Resolving a Generic with a Generic parameter in Castle Windsor
I am trying to register a type like IRequestHandler1[GenericTestRequest1[T]] which will be implemented by GenericTestRequestHandler`1[T] but I am currently getting an error from Wi …
