Tagged Questions
1
vote
1answer
45 views
servicestack with funq - autowiring by convention
I have a service which takes an IMyDependency in its constructor. IMyDependency, MyDependency and the service all live in the same assembly. MyDependency has a single, public, parameterless ...
1
vote
1answer
58 views
Registering same concrete class with RegisterAutoWired and RegisterAutoWiredAs
My question is quite simple. I have to register all implementations by their interface and concrete types.
container.RegisterAutoWiredAs<AuthenticationManager, IAuthenticationManager>();
...
1
vote
1answer
99 views
Property not being set in constructor by Container
I have a Service created with ServiceStack. I am using Funq for my Dependency Injection as it comes with ServiceStack by default, but this may be behaviour exhibited by other DI containers.
I ...
1
vote
1answer
98 views
Funq passing existing objects as parameters
I only know how to Register and Resolve new instances. However, I am not sure how to pass existing objects as parameters in to an instance I want to resolve.
Q1:
interface IPerson {
person ...
3
votes
1answer
922 views
Funq usage in ServiceStack
So simple question
How can I access Container instance out of controller?
I have to use Container.Resolve in my class but how can I access Container instance?
Is it singleton? Can I use new ...
4
votes
1answer
543 views
Does Funq support ResolveAll?
Does the Funq IoC container support resolving all registrations for a type? Something like either of these:
IEnumerable<IFoo> foos = container.Resolve<IEnumerable<IFoo>>();
...
6
votes
1answer
1k views
Does Funq IoC Container support property injection?
I'm looking for an IoC container to use in my Compact Framework application. Trying out Funq I noticed that I can't find a way to do Property Injection with it.
I've looked through the discussion on ...